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": "6aa23573e15336b70aa14318",
"name": "test",
"data": {
"gbac": {
"write": [
"d52b473b94a7ac6f41417ff3",
"b6503af145392ef570a9540d",
"0da7b87c52c8f51ff0994352",
"ed38ee52173596d2ae36ea40"
],
"read": [
"cf8a7261f057da533add063b",
"4927b17f5df7097d81056629",
"d8666d96d55078b5a668837f",
"e2ae4e544b6afc59a74b91fa"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "nisi amet occaecat ex",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "93d847d97c4186b8f834c788"
},
"lastModifiedBy": "adipisicing cupidatat",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "b79fab9c368b77b20c79dcb0"
}
],
"total": -61624396,
"skip": 62344432,
"limit": 67649106
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}