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": "b002d72ee425305835bf1382",
"name": "test",
"data": {
"gbac": {
"write": [
"c82716127e4fe4389ba009e7",
"397cc5369f14536ae9d0cc31",
"2ca08aae600447deaeb97ae9",
"400745ced7237413167d177e",
"40434f27bf191a92d6cdd041"
],
"read": [
"09a22bca26266c1383a8de3d",
"6e4ddd51ef5901deb4455d89",
"36e8c3fee74fefb6b38b020c",
"dd920e4c2702f4e614354a1c",
"851fc0acb7c6fb3413310f88"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "occaecat tempor fugiat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "e152acaaf1a1e307d67c7ed9"
},
"lastModifiedBy": "amet",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "c79daff20e6462dcdbb340ec"
},
{
"_id": "861742bef049eb777e10923f",
"name": "test",
"data": {
"gbac": {
"write": [
"9d9a77310b85db883a0f62ee",
"f126bbe1524dd0901d464c33",
"54f81de2a27a0b5492ab65b1",
"6fcfc76b4368dff3e9b31648",
"2eed2d56e21ebf2fcc309a74"
],
"read": [
"f6c8c820d70bc23c6bc1ed3b",
"c7096e329be9efbeac41f21e",
"cf28d91dbe7e7f3ace7062c4",
"de19f9428fb005d5c7ab0719"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "anim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "3042ab275ed23cccda40dd5f"
},
"lastModifiedBy": "est tempor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "41edae1320d1c651e16f56a2"
}
],
"total": -61441402,
"skip": -82424544,
"limit": -95516643
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}