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": "67dfbcaa74f7a31960d265fb",
"name": "test",
"data": {
"gbac": {
"write": [
"94a19815b95fa27bc426e197",
"91a023a97326cf1e143ede60"
],
"read": [
"c72516100fe901efa3277a19",
"f3c089a62aec9b2137754e2f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "pariatur consectetur enim laborum",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "9f1d86ccfda06245fcf7f688"
},
"lastModifiedBy": "qui proident",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "22317d6a987c93e08a942433"
},
{
"_id": "fda3ebb1f381ed55f4e94bd1",
"name": "test",
"data": {
"gbac": {
"write": [
"034cc4afd897b48efe1fa6e5",
"27fcc71c1bc663ad88389f9d"
],
"read": [
"222fddd48faf2f2dee0bd0ce",
"0aa50aa3972e7bb86eebff25",
"96716cb5423ce32cdf064fe4",
"227c885355b7520d5951c3ba",
"f92344a97724e7e9d748eb0b"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolore enim nostrud",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "62592374bade34ce08041a58"
},
"lastModifiedBy": "nisi",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "c2871590a618af06190c3dc4"
},
{
"_id": "ab0860eab41ae1cf9ec21f26",
"name": "test",
"data": {
"gbac": {
"write": [
"079f624f1513c9e996fb5f63",
"7531822f1a7ce04d76d6b30a",
"75eb9836caf63600565913a0",
"77d4e093772736343e1906a5"
],
"read": [
"246b1b4194fb7bb691f705c3",
"56f5cb47d48d5677df7c9fad"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "nostrud reprehenderit aute sint",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "07b531cf3212474a2d2d9cf6"
},
"lastModifiedBy": "eiusmod ea incididunt fugiat tempor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "4bc6fb120c750d05b8b4abec"
}
],
"total": 80220122,
"skip": 22243160,
"limit": 79773107
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}