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": "7b79da2bd5a6e018275bc1a0",
"name": "test",
"data": {
"gbac": {
"write": [
"e759f59582588c4b6d5f2ed0",
"69a1ed61e32f3e1725cddcd9",
"5797ae1c5f1e653f304dda0e",
"8354ae4c56f32bd35b3e32d5",
"9a76da0bab4c193c75fdb82e"
],
"read": [
"fa38669fbb18bd2fad07a962",
"4722aea5d41ec383ef47a532",
"191c9d045dece5896d4e1457",
"f5c2cb82fe223069dc4a6cef",
"0a0c6300cca042ca08cbc87c"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eiusmod do",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "175ea18daceb360b5a139a48"
},
"lastModifiedBy": "aliquip incididunt qui est",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
}
],
"total": 81028512,
"skip": -91796359,
"limit": -26830535
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}