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": "6c9ccca86b3c85348903961c",
"name": "test",
"data": {
"gbac": {
"write": [
"0b8d62b273b472b8e453d3e3",
"abc16643b136e4abb9b359f8"
],
"read": [
"baa6f66a86d682d000af9389",
"3208371b93f7a37a2f488de4",
"961818ed60d0d3abdfba984c",
"96638102144f5bbb671bb585"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliquip",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "87ed2511124dcd5985387485"
},
"lastModifiedBy": "incididunt consectetur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "cd2331d8f30d7fc5807e77b2"
}
],
"total": -47287582,
"skip": 90182052,
"limit": -80392658
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}