IntegrationsApple businessActions
Get Apple Business group
Get one Apple Business user group by id.
groups.get · Apple Business · v1
Details
Scopes
apple.groups.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
group_id | string | Yes | minLength 1; maxLength 200 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 200 |
name | string | No | maxLength 512 |
group_type | string | No | maxLength 128 |
status | string | No | maxLength 128 |
total_member_count | integer | No | minimum 0 |
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": {
"group_id": {
"type": "string",
"minLength": 1,
"maxLength": 200
}
},
"required": [
"group_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"name": {
"type": "string",
"maxLength": 512
},
"group_type": {
"type": "string",
"maxLength": 128
},
"status": {
"type": "string",
"maxLength": 128
},
"total_member_count": {
"type": "integer",
"minimum": 0
},
"created_date_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"updated_date_time": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id"
]
}