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": "992480265a6106f65a4959f2",
"name": "test",
"data": {
"gbac": {
"write": [
"318f989b1c64ccb5ff2c5749",
"fed297d76f0b6c2a7c349d20"
],
"read": [
"03526a13d6992af9db04c13c",
"6bd01518d67af5838a71d37a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "enim dolor esse exercitation",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "07ef6ec7c8f068f54d38bcd7"
},
"lastModifiedBy": "Excepteur eiusmod ex",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "53bb63960224967ad5e7abbf",
"name": "test",
"data": {
"gbac": {
"write": [
"0e69e0e03c8d67496c4dc1d2",
"fa777150e29c1a5dc448f7f6",
"20159b5e7eac8bc8aed76103",
"c8478ae3ab69533ececa51c5",
"722cb0baceddc1c06278655e"
],
"read": [
"632bdf574c5f56e5a60203b4"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "reprehenderit dolore nostrud",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "144396c0eab92c641025cfa0"
},
"lastModifiedBy": "ad tempor et ea elit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "6e9090aec725ddd76b0090ee",
"name": "test",
"data": {
"gbac": {
"write": [
"386a2b64045e39c40b75e96e"
],
"read": [
"abbf77aa8e221ddb1439d5b5"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "reprehenderit labore Lorem qui exercitation",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "ef45d14b3a4b24a7005dae6c"
},
"lastModifiedBy": "adipisicing Lorem velit et pariatur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
}
],
"total": 95824267,
"skip": -32724237,
"limit": -43340954
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}