IntegrationsJamf proActions
List mobile device extension attributes
List mobile device extension attribute definitions.
mobile_device_extension_attributes.list · Jamf Pro · v1
Details
Scopes
jamf.extension_attributes.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 |
extension_attributes | array<object> | Yes | maxItems 100 |
extension_attributes[] | object | Yes | additionalProperties false |
extension_attributes[].id | string | Yes | minLength 1; maxLength 128 |
extension_attributes[].name | string | No | maxLength 512 |
extension_attributes[].description | string | No | maxLength 1024 |
extension_attributes[].data_type | string | No | maxLength 128 |
extension_attributes[].input_type | string | No | maxLength 128 |
extension_attributes[].enabled | boolean | No | — |
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": {
"extension_attributes": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"name": {
"type": "string",
"maxLength": 512
},
"description": {
"type": "string",
"maxLength": 1024
},
"data_type": {
"type": "string",
"maxLength": 128
},
"input_type": {
"type": "string",
"maxLength": 128
},
"enabled": {
"type": "boolean"
}
},
"required": [
"id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"total_count": {
"type": "integer",
"minimum": 0
}
},
"required": [
"extension_attributes"
]
}