IntegrationsApple businessActions
Get Apple organization device
Get one organization device by id.
org_devices.get · Apple Business · v1
Details
Scopes
apple.org_devices.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
device_id | string | Yes | minLength 1; maxLength 200 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 200 |
serial_number | string | No | maxLength 128 |
device_model | string | No | maxLength 512 |
product_family | string | No | maxLength 128 |
product_type | string | No | maxLength 128 |
color | string | No | maxLength 128 |
device_capacity | string | No | maxLength 64 |
status | string | No | maxLength 128 |
order_number | string | No | maxLength 128 |
order_date_time | string | No | minLength 1; maxLength 64 |
added_to_org_date_time | string | No | minLength 1; maxLength 64 |
updated_date_time | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"device_id": {
"type": "string",
"minLength": 1,
"maxLength": 200
}
},
"required": [
"device_id"
]
}Output
{
"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"
]
}