Retrieves general device data.
GET/generalDevice
Retrieves and returns the current general device data.
Request
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
deviceType string[]nullable
Device type tokens.
general
object
nullable
personalDevice
object
nullable
idNumber stringnullable
name stringnullable
Agent name or user identifier.
personalNumber stringnullable
physicalDevice
object
nullable
IP stringnullable
MAC stringnullable
OS stringnullable
possibleBandwidth stringnullable
serialNumber stringnullable
Device serial number.
situationalDevice
object
nullable
availableStorage int64nullable
bandwidth int64nullable
location
object
nullable
alt stringnullable
lat stringrequired
long stringrequired
operativeState booleannullable
power int64nullable
time date-time
weather doublenullable
id stringrequired
platform stringnullable
Platform identifier.
{
"deviceType": [
"string"
],
"general": {
"personalDevice": {
"idNumber": "string",
"name": "string",
"personalNumber": "string"
},
"physicalDevice": {
"IP": "string",
"MAC": "string",
"OS": "string",
"possibleBandwidth": "string",
"serialNumber": "string"
},
"situationalDevice": {
"availableStorage": 0,
"bandwidth": 0,
"location": {
"alt": "string",
"lat": "string",
"long": "string"
},
"operativeState": true,
"power": 0,
"time": "2024-06-26T15:04:05Z",
"weather": 0
}
},
"id": "string",
"platform": "string"
}
Loading...