Skip to main content
FuseFuse
IntegrationsApple businessActions

Get Apple Business app

Get one Apple Business app by id.

Agent markdown

apps.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.apps.read

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 200
namestringNomaxLength 512
bundle_idstringNomaxLength 256
adam_idstringNomaxLength 128
platformstringNomaxLength 128

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "app_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "app_id"
  ]
}
Output
{
  "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"
  ]
}