IntegrationsApple businessActions
List devices for an Apple management service
List device relationship identifiers assigned to a management service.
management_services.devices.list · Apple Business · v1
Details
Scopes
apple.management_services.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
management_service_id | string | Yes | minLength 1; maxLength 200 |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
devices | array<object> | Yes | maxItems 100 |
devices[] | object | Yes | additionalProperties false |
devices[].id | string | Yes | minLength 1; maxLength 200 |
devices[].type | string | No | maxLength 128 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"management_service_id": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"management_service_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"devices": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"type": {
"type": "string",
"maxLength": 128
}
},
"required": [
"id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"devices"
]
}