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": "a12c62fe2a2be9296020610c",
"name": "test",
"data": {
"gbac": {
"write": [
"f30742b1d63c6c6498cb029b",
"4cf4165ce0f25efb785471db",
"d77be90e7625ebf7c64270d2",
"ccc7022f8174ea585b796eff",
"5b7117e0cec749052b2e30b0"
],
"read": [
"fcbc07f727c2ce0ab646c13b",
"211fa60e783329bc9511b220",
"b110317f71bcb1640ad8e1f1",
"5b8be193ae00950117228653"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "veniam et",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "a249053a2fd272037076ac53"
},
"lastModifiedBy": "in cillum exercitation labore quis",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "486ad64918f87100ef12254f"
}
],
"total": 62045262,
"skip": -79489453,
"limit": -25930379
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}