LIST Device Fleet Configurations for the device
GET/workspaces/:workspaceId/devices/:deviceId/device-fleet-configurations
List Device Fleet Configurations for the device.
Request
Path Parameters
workspaceId uuidrequired
deviceId stringrequired
Responses
- 200
- 404
- 423
List of Device Fleet Configurations for the device.
- application/json
- Schema
- Example (from schema)
- example-1
Schema
Array [
]
configurations
object[]
name string
contentVersion int64
status int32
Possible values: [Applied
, Targeted
]
{
"configurations": [
{
"name": "string",
"contentVersion": 0,
"status": "Applied"
}
]
}
{
"configurations": [
{
"name": "device-fleet-configuration-1",
"contentVersion": 1,
"status": "Applied"
},
{
"name": "device-fleet-configuration-2",
"contentVersion": 2,
"status": "Targeted"
}
]
}
Workspace not found.
- application/problem+json
- Schema
- Example (from schema)
Schema
type stringnullable
title stringnullable
status int32nullable
detail stringnullable
instance stringnullable
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Workspace disabled.
- application/problem+json
- Schema
- Example (from schema)
Schema
type stringnullable
title stringnullable
status int32nullable
detail stringnullable
instance stringnullable
{
"type": "string",
"title": "string",
"status": 0,
"detail": "string",
"instance": "string"
}
Loading...