IntegrationsApple businessActions
List Apple management services
List MDM management services (servers) for the organization.
management_services.list · Apple Business · v1
Details
Scopes
apple.management_services.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
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 |
management_services | array<object> | Yes | maxItems 100 |
management_services[] | object | Yes | additionalProperties false |
management_services[].id | string | Yes | minLength 1; maxLength 200 |
management_services[].server_name | string | No | maxLength 512 |
management_services[].server_type | string | No | maxLength 128 |
management_services[].created_date_time | string | No | minLength 1; maxLength 64 |
management_services[].updated_date_time | string | No | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"management_services": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"server_name": {
"type": "string",
"maxLength": 512
},
"server_type": {
"type": "string",
"maxLength": 128
},
"created_date_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"updated_date_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"management_services"
]
}