Skip to main content
FuseFuse
IntegrationsApple businessActions

List Apple organization devices

List organization devices from the Apple Business API.

Agent markdown

org_devices.list · 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
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
org_devicesarray<object>YesmaxItems 100
org_devices[]objectYesadditionalProperties false
org_devices[].idstringYesminLength 1; maxLength 200
org_devices[].serial_numberstringNomaxLength 128
org_devices[].device_modelstringNomaxLength 512
org_devices[].product_familystringNomaxLength 128
org_devices[].product_typestringNomaxLength 128
org_devices[].colorstringNomaxLength 128
org_devices[].device_capacitystringNomaxLength 64
org_devices[].statusstringNomaxLength 128
org_devices[].order_numberstringNomaxLength 128
org_devices[].order_date_timestringNominLength 1; maxLength 64
org_devices[].added_to_org_date_timestringNominLength 1; maxLength 64
org_devices[].updated_date_timestringNominLength 1; maxLength 64
next_cursorstringNominLength 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": {
    "org_devices": {
      "type": "array",
      "items": {
        "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"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "org_devices"
  ]
}