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": "fdd96e26547955e276bc80ec",
"name": "test",
"data": {
"gbac": {
"write": [
"04fd66ad5689bfeb8a5fe5c9",
"ee79f1aa22340bf82032e9e1"
],
"read": [
"fa4489ab023624029b175c9c",
"6686f81e14c73c8534ca3d9b",
"023856819fd9b9b52c77ce52",
"13b724eaa5c8ae3a5e88eb3f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliqua",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "03b3159397098025e991227e"
},
"lastModifiedBy": "culpa",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "11e2b7be319574deb5c8732b"
}
],
"total": 9025860,
"skip": 75622104,
"limit": -960824
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}