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": "f66e7032ceff401a1ed00855",
"name": "test",
"data": {
"gbac": {
"write": [
"53fdffa1406f7a051442e66c",
"09ec667e51044d485de38aa5",
"c7a640f207fff5bb765a32be",
"9fe64d019c065da28b963050",
"b3cad2917a402d83c515084b"
],
"read": [
"d34c795154423bf297d55b47",
"0fd2c271fde767984e8144be",
"2a2384affca86c34a5e1a339",
"f4896f7d39e705a27c6bce7a",
"7e1b6236e7a764627d08230e"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "consequat ad ex esse nostrud",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "649988ced503a382c101c5c8"
},
"lastModifiedBy": "nostrud proident veniam",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "ac53876ae800e053afb7ad78"
}
],
"total": -61634474,
"skip": -48386717,
"limit": -51783435
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}