Skip to main content
FuseFuse
IntegrationsApple businessActions

Get Apple Business package

Get one Apple Business package by id.

Agent markdown

packages.get · Apple Business · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • apple.packages.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
package_idstringYesminLength 1; maxLength 200

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 200
namestringNomaxLength 512
package_typestringNomaxLength 128
versionstringNomaxLength 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"
  ]
}