Skip to main content
FuseFuse
IntegrationsJamf proActions

List Jamf computers

List computer inventory records from Jamf Pro.

Agent markdown

computers.list · Jamf Pro · v1

Details

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

Scopes

  • jamf.computers.read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
computersarray<object>YesmaxItems 100
computers[]objectYesadditionalProperties false
computers[].idstringYesminLength 1; maxLength 128
computers[].namestringNomaxLength 512
computers[].udidstringNomaxLength 128
computers[].serial_numberstringNomaxLength 128
computers[].platformstringNomaxLength 128
computers[].os_versionstringNomaxLength 128
computers[].management_idstringNominLength 1; maxLength 128
computers[].last_contact_atstringNominLength 1; maxLength 64
computers[].last_enrolled_atstringNominLength 1; maxLength 64
computers[].usernamestringNomaxLength 320
computers[].emailstringNomaxLength 320
next_cursorstringNominLength 1; maxLength 64
total_countintegerNominimum 0

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "computers": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "name": {
            "type": "string",
            "maxLength": 512
          },
          "udid": {
            "type": "string",
            "maxLength": 128
          },
          "serial_number": {
            "type": "string",
            "maxLength": 128
          },
          "platform": {
            "type": "string",
            "maxLength": 128
          },
          "os_version": {
            "type": "string",
            "maxLength": 128
          },
          "management_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "last_contact_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "last_enrolled_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "username": {
            "type": "string",
            "maxLength": 320
          },
          "email": {
            "type": "string",
            "maxLength": 320
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "total_count": {
      "type": "integer",
      "minimum": 0
    }
  },
  "required": [
    "computers"
  ]
}