IntegrationsApple businessActions
Get Apple Business user
Get one Apple Business user by id.
users.get · Apple Business · v1
Details
Scopes
apple.users.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_id | string | Yes | minLength 1; maxLength 200 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 200 |
first_name | string | No | maxLength 512 |
last_name | string | No | maxLength 512 |
email | string | No | maxLength 320 |
managed_apple_account | string | No | maxLength 320 |
status | string | No | maxLength 128 |
department | string | No | maxLength 512 |
job_title | string | No | maxLength 512 |
employee_number | string | No | maxLength 128 |
created_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": {
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 200
}
},
"required": [
"user_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"first_name": {
"type": "string",
"maxLength": 512
},
"last_name": {
"type": "string",
"maxLength": 512
},
"email": {
"type": "string",
"maxLength": 320
},
"managed_apple_account": {
"type": "string",
"maxLength": 320
},
"status": {
"type": "string",
"maxLength": 128
},
"department": {
"type": "string",
"maxLength": 512
},
"job_title": {
"type": "string",
"maxLength": 512
},
"employee_number": {
"type": "string",
"maxLength": 128
},
"created_date_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"updated_date_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id"
]
}