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": "5d23f727d8e71f220e65ef75",
"name": "test",
"data": {
"gbac": {
"write": [
"11ecc037a1fb4d33e6a5ee24",
"ad1f4b8de919b44c107206d7",
"5edeeeb78ea555caf9ed3641",
"6df574c5026d69e5ea55766d",
"c04797be9a43ab519455796b"
],
"read": [
"4aede3053775afab0647c63d",
"155da70f2ea5b4950300591d",
"76f74ff0197724667563651b",
"fcdffdcbe23cbe17e32994f8",
"94e2aee39407d394f61b0e7a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolore cillum deserunt ea sunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "cbfdaedafee4c1d5e619255d"
},
"lastModifiedBy": "dolore cillum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "5f7ed211cae30f2a50484bec"
},
{
"_id": "24749a5897f9c88d793c2feb",
"name": "test",
"data": {
"gbac": {
"write": [
"a3ff980cf1a403d75b03bcb2",
"ad120aad969c536ee0f58df6",
"0d9c38ddf71aa6c31ed8270b",
"bab96330421ed4fc09307d7d"
],
"read": [
"deb88707b83245781ee77c3f",
"426ace2f3b961ac6abcb5d0f",
"38d41d397dd32a9451a18e47",
"d101367b1d972dac092f0d1a",
"4cab601033a08ee22ae19faa"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "consectetur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "b1aa5bc9cfec7cb4b5380a35"
},
"lastModifiedBy": "et mollit cillum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "83c5e940a54b1e408676944e"
},
{
"_id": "33274470076412a77fa7a9c0",
"name": "test",
"data": {
"gbac": {
"write": [
"f5486543269a24aa86be8a60"
],
"read": [
"fe6c5c6f9f9f64722ec1c0f3",
"3b662a708f3addc7eec56040",
"6edfc266162510fe7baed6e4"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliqua",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "f8818affa5be70dd2f494f1b"
},
"lastModifiedBy": "dolore ea exercitation",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "f66041e3fd52e20a65ea82fa"
}
],
"total": 92189948,
"skip": -20769234,
"limit": 144102
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}