Summary
Gets all known automations
Description
Gets all known automations returned in alphabetical order
Route
GET /automation_catalog/automations
Roles
admin
other
readonly
apiread
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
queryParameters |
object |
yes |
Options for query parameters |
Copied to Clipboard
{
"type": "object",
"properties": {
"queryParameters": {
"title": "queryParameters",
"type": "object"
}
},
"required": [
"queryParameters"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
array |
List of all automation documents |
Copied to Clipboard
{
"list": [
{
"_id": "e33f9e54e7f053734884d9d9",
"name": "test",
"data": {
"gbac": {
"write": [
"5bf6b44255c4d40f06520c1d",
"65ae79531dbf28c349541952",
"ddefa0d9bc1ccce3f3f93df0",
"af9dabfdfe1b395ec67f48b4"
],
"read": [
"a376489ad2a694794946af65",
"fbe9b733465b12bf445addf1",
"9ad5ed9b312c5eaff812b99b"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "cillum id Ut dolor esse",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "8e77bb37657067c8f540aed8"
},
"lastModifiedBy": "ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "45e5e4dcb08a40c8760efdd5",
"name": "test",
"data": {
"gbac": {
"write": [
"175e20f82b618dc58fd360e2",
"d1c405e3f0944ffb6992f06b",
"b3fa664c1f89456f57ee2fa9"
],
"read": [
"e99e36b7c37f01ebe1bb93a2",
"02026ca5376ff0131f062f1e",
"9a3a938ab43b83349a92edf3"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "cupidatat dolore eiusmod consectetur proident",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "07d8a23eb9247b72f6a84f8d"
},
"lastModifiedBy": "adipisicing incididunt in minim dolor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": -55516300,
"skip": -62517230,
"limit": 97546888
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}