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