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": "cc3fe5fd2091246e59d59f1a",
"name": "test",
"data": {
"gbac": {
"write": [
"79d65bcc5702e3bc12380d19",
"042f40bd7b62bb76a73be70c",
"1d795f0d7927db029253bf27",
"0d84e8b57d4f9cd383954e22",
"c0155c82d72d501956d795d9"
],
"read": [
"15697f773355017fc1fbd357"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "elit ullamco Duis",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "6b618f1c235f32a3e48f253e"
},
"lastModifiedBy": "commodo ea Ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "22d902c6da0435b40b3c3a2a"
},
{
"_id": "db61653a598b4951da7e5d2f",
"name": "test",
"data": {
"gbac": {
"write": [
"13fcc4bd3c346ddf218358fd",
"cd53d067023b857e0ea425d7",
"44af5db1ab95f2e9c6ae5455",
"b8336b6bc2ede466d00b156a"
],
"read": [
"361a01b8333f9dcf8611138b",
"fefce9323921630ed30399bf",
"29a37697b23ce6c2c98181be"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "fugiat tempor adipisicing aliquip Ut",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "ebc79cc7313b1884e4d8a01f"
},
"lastModifiedBy": "id eu",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "9e195a85c54b61b3f5b71815"
},
{
"_id": "53a6dab37e0c50337bdcc736",
"name": "test",
"data": {
"gbac": {
"write": [
"d7ebd46ad1a08ad05d00be1c",
"386e512d4d93430e34873bd9",
"58db881590a20f5dc87921b9"
],
"read": [
"a21a496677b3a3c8a28ad4c0",
"ab5801bd607151958c4e3517",
"eb44a9d2877aaa285415c4a2",
"c1a50aacf263d3c45df0b089",
"39bf427a923422d688d29831"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Ut",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "dd6701a050a982fd88eed629"
},
"lastModifiedBy": "voluptate dolor nostrud nulla irure",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "85602553d78eeeae326076ef"
},
{
"_id": "b2e758c7a97f2431062a1e28",
"name": "test",
"data": {
"gbac": {
"write": [
"c233609edba75ec87062d3d4",
"f91ec9fd67ba5331caa32773",
"7fe798522398308e2d620b13",
"e32fc313c452cc17ce23ba61"
],
"read": [
"82e8c9bea87baac8eeb51706"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "exercitation aute consequat in",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "9e22810950cb891b6c9d130a"
},
"lastModifiedBy": "sint non nisi ad",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "9ba6c326f01a2f269aa7bdb5"
}
],
"total": 86048409,
"skip": 88286575,
"limit": 49115495
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}