IntegrationsApple businessActions
List Apple organization devices
List organization devices from the Apple Business API.
org_devices.list · Apple Business · v1
Details
Scopes
apple.org_devices.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 |
org_devices | array<object> | Yes | maxItems 100 |
org_devices[] | object | Yes | additionalProperties false |
org_devices[].id | string | Yes | minLength 1; maxLength 200 |
org_devices[].serial_number | string | No | maxLength 128 |
org_devices[].device_model | string | No | maxLength 512 |
org_devices[].product_family | string | No | maxLength 128 |
org_devices[].product_type | string | No | maxLength 128 |
org_devices[].color | string | No | maxLength 128 |
org_devices[].device_capacity | string | No | maxLength 64 |
org_devices[].status | string | No | maxLength 128 |
org_devices[].order_number | string | No | maxLength 128 |
org_devices[].order_date_time | string | No | minLength 1; maxLength 64 |
org_devices[].added_to_org_date_time | string | No | minLength 1; maxLength 64 |
org_devices[].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": {
"org_devices": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"serial_number": {
"type": "string",
"maxLength": 128
},
"device_model": {
"type": "string",
"maxLength": 512
},
"product_family": {
"type": "string",
"maxLength": 128
},
"product_type": {
"type": "string",
"maxLength": 128
},
"color": {
"type": "string",
"maxLength": 128
},
"device_capacity": {
"type": "string",
"maxLength": 64
},
"status": {
"type": "string",
"maxLength": 128
},
"order_number": {
"type": "string",
"maxLength": 128
},
"order_date_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"added_to_org_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": [
"org_devices"
]
}