List Commands
This endpoint returns all commands.
Sample Request
curl -X GET https://console.jumpcloud.com/api/commands/ \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-api-key: {API_KEY}'
Basic Parameters
Parameter | Description |
---|---|
Fields | Use a space seperated string of field parameters to include the data in the response. If omitted, the default list of fields will be returned. |
Filter | A filter to apply to the query. See the supported operators below. For more complex searches,see the related /search/<domain> endpoints,e.g. /search/systems .Filter structure: <field>:<operator>:<value> .field = Populate with a valid field from an endpoint response.operator = Supported operators are:
$ will result in undefined behavior.value = Populate with the value you want to search for. Is case sensitive.Examples
|
Sort | Use space separated sort parameters to sort the collection.Default sort is ascending. Prefix with - to sort descending. |
Advanced Parameters
Parameter | Description |
---|---|
Limit | The number of records to return at once. Limited to 100. |
Organization ID | Organization identifier that can be obtained from console settings. |
Skip | The offset into the records to return. |
Example Output
{
"totalCount": 1,
"results": [
{
"name": "commandName",
"command": "exmapleCommand",
"commandType": "mac",
"launchType": "manual",
"listensTo": "",
"schedule": "immediate",
"trigger": "",
"scheduleRepeatType": "day",
"organization": "12a345b67887bf8dc618765f9",
"scheduleYear": 0,
"template": "",
"_id": "12a345ac67805c374abee09b",
"id": "12a345ac67805c374abee09b"
}
]
}
Workflow Library Example
List Commands with Jumpcloud and Send Results Via Email
Preview this Workflow on desktop