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": "9dcba91e451b0ea7ac7161cd",
"name": "test",
"data": {
"gbac": {
"write": [
"3a6d3ddabe5dcf5165ce58c0",
"8bc40d8eb11b4662251f3d63",
"41839adaf5bd864d1cfa3e9c",
"0168b8a24c6e056e7d2ec64a"
],
"read": [
"72eb50a1fd25031874b288a8",
"d3e2310bd0919f5de21a7380",
"e8b1a91569ad31d71a5bfaa9",
"6f3beb29d1a897f654e71222",
"212997f1791b4ce1a09ceda4"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sint dolor sed quis sunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "fc6d1ed0099befe3b0ca2124"
},
"lastModifiedBy": "laborum consequat deserunt Duis exercitation",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "81d42682fb475a2d53f9c64b"
},
{
"_id": "96c61792cbb5dde9bc252e90",
"name": "test",
"data": {
"gbac": {
"write": [
"ba855660f2f8d0bd148e1381",
"89bb51d21a3bb3f361e20334"
],
"read": [
"caeefafdf1d0bd2db4f0caad",
"1fb5cd0f14163d77c7ecf298",
"17a350b72c0197910bad4f8b",
"fbc1506fc255b816023bba8d"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "fugiat cupidatat amet",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "54f5cf98ffbde430fccf2472"
},
"lastModifiedBy": "et non amet irure Duis",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "28df96fdbffe882948b14eb1"
}
],
"total": 84297168,
"skip": -16117296,
"limit": 79430663
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}