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": "a4efe7c28b776c0313920b9b",
"name": "test",
"data": {
"gbac": {
"write": [
"f88d12b26f0950763b7c2790"
],
"read": [
"38c1bd73c8df662fe5941d9a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "minim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "69fa5e1c6a3b8e996eb6a75d"
},
"lastModifiedBy": "eu sit culpa",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "72aec1d6681f1fc6d0e71c20"
},
{
"_id": "fb9dc2e1c29e772a3ae049f9",
"name": "test",
"data": {
"gbac": {
"write": [
"a9957d78f7ed63b04b014f34",
"c15eb6a4e921bfafe43454c2",
"8b7e3ee274ecd2ac7b1e9370"
],
"read": [
"1af3ae3a0f9a935bffca230e",
"0e27fdcfb6f6a2f020a5dbbf",
"6d8750877b04dab1cde4d84f",
"372582c3eebef22b066f63c1",
"8a3bf6ea2d5739d145a34b5e"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "veniam amet proident quis",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "21b01dfef6332f2ce263aaa0"
},
"lastModifiedBy": "deserunt incididunt eiusmod",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "bb155849c5a70923713db1ca"
}
],
"total": 34749597,
"skip": 62417434,
"limit": 81677586
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}