Get Device Provisioned Config
GET/api/v1/devices/:device/provisioned-config
Get the latest provisioned config for a Device
by its ID
. This endpoint is only available for Admins
Request
Path Parameters
device integerrequired
Possible values: > 0
ID
of the Device
Responses
- 200
- 400
- 401
- 403
- 404
Success
- application/json
- Schema
Schema
any
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
status stringrequired
Possible values: [Validation Error
]
errors
object[]
required
error stringrequired
location stringrequired
Possible values: [body
, query
, path
, headers
]
{
"status": "Validation Error",
"errors": [
{
"error": "string",
"location": "body"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
status stringrequired
Possible values: [Unauthorized
]
{
"status": "Unauthorized"
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
status stringrequired
Possible values: [Forbidden
]
{
"status": "Forbidden"
}
Device not found
- application/json
- Schema
- Example (from schema)
Schema
status stringrequired
Possible values: [Device not found
]
{
"status": "Device not found"
}
Loading...