Skip to main content
FuseFuse
IntegrationsJamf proActions

List Jamf packages

List package definitions in Jamf Pro.

Agent markdown

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

Input

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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
packagesarray<object>YesmaxItems 100
packages[]objectYesadditionalProperties false
packages[].idstringYesminLength 1; maxLength 128
packages[].package_namestringNomaxLength 512
packages[].file_namestringNomaxLength 512
packages[].category_idstringNominLength 1; maxLength 128
packages[].infostringNomaxLength 1024
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": {
    "packages": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "package_name": {
            "type": "string",
            "maxLength": 512
          },
          "file_name": {
            "type": "string",
            "maxLength": 512
          },
          "category_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "info": {
            "type": "string",
            "maxLength": 1024
          }
        },
        "required": [
          "id"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "total_count": {
      "type": "integer",
      "minimum": 0
    }
  },
  "required": [
    "packages"
  ]
}