Add Project to Device Type
PUT/api/v1/hierarchy/device-types/:deviceTypeId/projects/:projectIdentifier
Add Project to Device Type
Request
Path Parameters
deviceTypeId numberrequired
ID of the device type
projectIdentifier stringrequired
Project identifier (ID or name)
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
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
applicationCategory string
Application category (user or technician)
{
"deviceTypeId": 0,
"deviceTypeName": "string",
"projects": [
{
"projectName": "string",
"projectId": 0,
"displayName": "string",
"label": "string",
"applicationCategory": "string"
}
]
}
Loading...