IntegrationsApple businessActions
List Apple Business apps
List apps from the Apple Business API.
apps.list · Apple Business · v1
Details
Scopes
apple.apps.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 |
apps | array<object> | Yes | maxItems 100 |
apps[] | object | Yes | additionalProperties false |
apps[].id | string | Yes | minLength 1; maxLength 200 |
apps[].name | string | No | maxLength 512 |
apps[].bundle_id | string | No | maxLength 256 |
apps[].adam_id | string | No | maxLength 128 |
apps[].platform | string | No | maxLength 128 |
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": {
"apps": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"name": {
"type": "string",
"maxLength": 512
},
"bundle_id": {
"type": "string",
"maxLength": 256
},
"adam_id": {
"type": "string",
"maxLength": 128
},
"platform": {
"type": "string",
"maxLength": 128
}
},
"required": [
"id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"apps"
]
}