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": "076ffc8cfdf1c9ef4badc6be",
"name": "test",
"data": {
"gbac": {
"write": [
"6e1d739ab6fd23b6cf8916b3",
"3b4f15a29f8e0f242cfa4119",
"5a7549fec8dc366e5fa9557b",
"8e482d9791d2d0bff8a851b2"
],
"read": [
"22ddb57b60089f7931ed6361"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ex",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "fd1dc6ba0de05a15f5c09aa7"
},
"lastModifiedBy": "voluptate esse adipisicing",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "52d9f80fa17da68b5b6fb97e"
},
{
"_id": "7e57c083fde1bca3352e28af",
"name": "test",
"data": {
"gbac": {
"write": [
"a6f1f6633898b67cfe0ce5f0"
],
"read": [
"3dceacc3a854e2e2d91c866f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "cupidatat aute dolor",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "17df7e4ffe81f7af4233c123"
},
"lastModifiedBy": "culpa in commodo in do",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "74d272821f02db5ac2d50642"
},
{
"_id": "0bc77845045c878dbe08fe65",
"name": "test",
"data": {
"gbac": {
"write": [
"08e25f8273119adad4a648c8",
"526009ecbe56e0ff0b0b175f",
"3b6264e9546f0d9c538daba4",
"4ad42f1581a9d842a3519d33",
"5cc52cfd9983577358a181cc"
],
"read": [
"a5c5508d0c3ac2b5049d0c5c",
"ff4bf1c966496c1ed309f7f2",
"623b73d79d18c0998270cb09",
"0693d13409411ee2586184d3",
"112a8f23de9d2f0ac7dc25c6"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "434bd695d9cfe63d2a3ebd9c"
},
"lastModifiedBy": "ipsum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "fd1475a3e0c811057db73cf2"
},
{
"_id": "c44047e44572fe1dd353ed4c",
"name": "test",
"data": {
"gbac": {
"write": [
"749ac7b721d15735ca871c43",
"36ec6dc1f7beeae4b7ab9c49",
"71fc48e3881560666cd3b8fa",
"bea5ffce3366fa2a2262e582",
"e90a1c59510e07955abc9c33"
],
"read": [
"e7441dde56ed5742276001ea",
"43cbf16d6d7f0df2686d18dc",
"e4e2b5e3c922f1a5cab9c189"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "anim ea aliqua in ut",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "fc9c2493b5710b303f3a02b4"
},
"lastModifiedBy": "non eiusmod in minim quis",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "49a76458ed2a8451ca888318"
}
],
"total": -3897785,
"skip": 84236812,
"limit": -18945814
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}