IntegrationsApple businessActions
Get Apple Business package
Get one Apple Business package by id.
packages.get · Apple Business · v1
Details
Scopes
apple.packages.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
package_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 |
package_type | string | No | maxLength 128 |
version | string | No | maxLength 128 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"package_id": {
"type": "string",
"minLength": 1,
"maxLength": 200
}
},
"required": [
"package_id"
]
}Output
{
"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"
]
}