IntegrationsJamf proActions
List Jamf packages
List package definitions in Jamf Pro.
packages.list · Jamf Pro · v1
Details
Scopes
jamf.packages.read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
packages | array<object> | Yes | maxItems 100 |
packages[] | object | Yes | additionalProperties false |
packages[].id | string | Yes | minLength 1; maxLength 128 |
packages[].package_name | string | No | maxLength 512 |
packages[].file_name | string | No | maxLength 512 |
packages[].category_id | string | No | minLength 1; maxLength 128 |
packages[].info | string | No | maxLength 1024 |
next_cursor | string | No | minLength 1; maxLength 64 |
total_count | integer | No | minimum 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"
]
}