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": "30d19907c3b83f8c378754e0",
"name": "test",
"data": {
"gbac": {
"write": [
"1368138c862aca63f9e3680d",
"52718baedefb9c9220dad02b",
"fba5c6d842d61c1fe718f17e"
],
"read": [
"9cb418818c24989c1af2f1f7",
"f9fb1c38bab516d8f7979715",
"d2a3711341439f64e022acac"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "nulla cillum non",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "6f3baf7583907c1cb4ce1044"
},
"lastModifiedBy": "proident eu",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "5ecc28364e8f8e8557633bb0",
"name": "test",
"data": {
"gbac": {
"write": [
"a0d0b7317c9800daa0b9d332",
"9934237cf181ec5cacfc4b84",
"36ba0154d0343abc66555893"
],
"read": [
"cdf344d17201f73ebb6ccbe0",
"97a0245494ed85aa5699994a",
"f2500fcf67b45663c6501a70",
"1f230163b6fd8e93a2aac12a",
"b5c21fadd39afabf06de662a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "in laborum Ut",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "205ae7747203351254761dd5"
},
"lastModifiedBy": "incididunt eiusmod",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
}
],
"total": -36735880,
"skip": -61299774,
"limit": -34672033
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}