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": "61aa25d6819e371ce05f77d5",
"name": "test",
"data": {
"gbac": {
"write": [
"aaaa18471b81a23a86b9bab3",
"3e97bb771b3c68296e53be3a",
"0ab44a367f68e3176fce1e86",
"315e393d4f009fd5fb70d12c"
],
"read": [
"29a8cbba65bfdfbe7ae1784a",
"276ec4db7978f2b59f99fd61"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "cupidatat est occaecat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "2f2a93a8629127a7023bb6c5"
},
"lastModifiedBy": "aliquip",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "16dcf8e283ce500153d48b99"
}
],
"total": -72038100,
"skip": -13388562,
"limit": 52895252
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}