Skip to main content
FuseFuse
IntegrationsApple businessActions

Get Apple organization device

Get one organization device by id.

Agent markdown

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

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 200
serial_numberstringNomaxLength 128
device_modelstringNomaxLength 512
product_familystringNomaxLength 128
product_typestringNomaxLength 128
colorstringNomaxLength 128
device_capacitystringNomaxLength 64
statusstringNomaxLength 128
order_numberstringNomaxLength 128
order_date_timestringNominLength 1; maxLength 64
added_to_org_date_timestringNominLength 1; maxLength 64
updated_date_timestringNominLength 1; maxLength 64

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "device_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "device_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "serial_number": {
      "type": "string",
      "maxLength": 128
    },
    "device_model": {
      "type": "string",
      "maxLength": 512
    },
    "product_family": {
      "type": "string",
      "maxLength": 128
    },
    "product_type": {
      "type": "string",
      "maxLength": 128
    },
    "color": {
      "type": "string",
      "maxLength": 128
    },
    "device_capacity": {
      "type": "string",
      "maxLength": 64
    },
    "status": {
      "type": "string",
      "maxLength": 128
    },
    "order_number": {
      "type": "string",
      "maxLength": 128
    },
    "order_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "added_to_org_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "updated_date_time": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "id"
  ]
}