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": "b5b6d4d139a0735c19ae9b16",
"name": "test",
"data": {
"gbac": {
"write": [
"a40556c74051dd6cba4b1e3d",
"69db789cc4abf06378a9e094",
"c7051fa9aa1180eb30b49b27"
],
"read": [
"1552ef0c9e1887195132a8a2",
"6019beb60aa83023069bb846",
"bdf0497b3b4b7229bc0e8d63"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ut sit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "79ea80e32659e54fed942278"
},
"lastModifiedBy": "dolore in et",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "f699698b3b65611c08bbef29"
}
],
"total": 55934697,
"skip": 26640546,
"limit": -79508835
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}