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": "8ef5cce7c825ece411afb98b",
"name": "test",
"data": {
"gbac": {
"write": [
"85f93ac6f8868e13586a5c8b",
"c576c4b2fa1afc82b02a03f4",
"863e89a82d68341cf7fa720b"
],
"read": [
"62a6604fb33dbf3455982200",
"8349372e2b59e116c8206c9a",
"40b52110a48e19f1f79dbe2b",
"9c427a0701a3800fc9ed9521",
"e4914d84e344fb4754c64dce"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "proident in reprehenderit elit ipsum",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "f1b5dc007c957549a06ac7c8"
},
"lastModifiedBy": "dolore qui proident",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "ad3595e34a433f2b267c775c"
},
{
"_id": "98f632c82308052cbde54d4d",
"name": "test",
"data": {
"gbac": {
"write": [
"b61637639c9789c0fcf20382",
"c0b2bb05f9b1890042ddba31",
"3546e6053526f4a511085aac",
"51e247a1446710b0c0eaa37f"
],
"read": [
"9579bd2174f58b484b34b7a3",
"9e3a7efdc5161cd1b763db34",
"453d7a463b8e33ece5734e02"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "quis enim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "9b47e492c8cdee8627c363cb"
},
"lastModifiedBy": "mollit irure dolore in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "1021945e8729a79ae654a7d8"
},
{
"_id": "d1ccb0c062826e9e9c1c88f2",
"name": "test",
"data": {
"gbac": {
"write": [
"0587ed02a1d28a68f192be14",
"eb18142f4273f09699237caf",
"6f1828fb1571321cadc5420f"
],
"read": [
"f446a139e89be44f29991c9c",
"8474ffd957e5bb8b838b2ff9",
"fcada9179f3698b0d7fde1ab"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eiusmod enim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "b028a7ba23a348e01a0fb5c6"
},
"lastModifiedBy": "nostrud in sint dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "d2f859f4323594794be97ca9"
}
],
"total": -60850638,
"skip": 76667767,
"limit": -10738594
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}