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": "8493a4de30eac34d0a9b109a",
"name": "test",
"data": {
"gbac": {
"write": [
"28cdc1b346c52218297f71b5",
"565642cddc79c9671c79b91a",
"2fa3f25bbba3c9a173bc30b8",
"97389f67670a8c30f137e94c",
"e74378e5631edf0f8903eec2"
],
"read": [
"88bfa925f22e55fcc7956628",
"53e736c59639e98cb12ff239",
"de744daa697247ad8bb3e978",
"d3d0c8bb69c32cf79193fcb7"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "exercitation est",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "7db0364017c6ff17602c2646"
},
"lastModifiedBy": "cillum Excepteur laboris ad dolor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "502b1bdbf5a7b2f8a9250d29"
},
{
"_id": "350f2be9c5178c23fe8eac83",
"name": "test",
"data": {
"gbac": {
"write": [
"f9ecb70e4a9cc667edfcb79d",
"61070de675e105cfdcda4697",
"8eb9397d7e570071d3740cff",
"37c2978839981ef9e460854c",
"445457eec6642115a1febead"
],
"read": [
"ac659842fd67fd830d88796d",
"a8b1b436943f2da2b134ce8b",
"4033d9e0b5fd86e436cc7e7b"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aute",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "5e1908bb401cde6e534e02a2"
},
"lastModifiedBy": "eu id",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "102ff2221a71cd5908e48e1f"
},
{
"_id": "8560283669b170843dba192f",
"name": "test",
"data": {
"gbac": {
"write": [
"fbf4de5a6d8c308402493ada",
"fa69875d1da871dc7db2e32e",
"c7fedca5547d83d2182a48d1"
],
"read": [
"dae93e65398060c482572819",
"187abe696a0dee13b5858014",
"bf2f9fe6ee2fb547d2c7ae56",
"45f854373a512d63e06e6e4a",
"815db2c5e40b1404a745df32"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eu labore aliqua",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "e81cf84f354553f8bac7f21c"
},
"lastModifiedBy": "consectetur in nisi magna",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "276d305cbfee9d4fba102260"
}
],
"total": -81298601,
"skip": -74228119,
"limit": -87348438
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}