Get full hierarchy for a platform
GET/api/v1/hierarchy/platforms/:platformId/tree
Get full hierarchy for a platform
Request
Path Parameters
platformId numberrequired
ID of the platform
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
platformId numberrequired
ID of the platform
platformName stringrequired
Name of the platform
deviceTypes
object[]
deviceTypeId numberrequired
ID of the device type
deviceTypeName stringrequired
Name of the device type
projects
object[]
projectName stringrequired
Unique name of the project
projectId numberrequired
Identifier of the project
displayName string
Display name of the project
label string
Label of the project
{
"platformId": 0,
"platformName": "string",
"deviceTypes": [
{
"deviceTypeId": 0,
"deviceTypeName": "string",
"projects": [
{
"projectName": "string",
"projectId": 0,
"displayName": "string",
"label": "string"
}
]
}
]
}
Loading...