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": "acde035704f7bada3b8cc59e",
"name": "test",
"data": {
"gbac": {
"write": [
"e41e5428f9917675265c801e",
"2de734a4753f218d2d4fa650",
"872c82d88f5c30a3582abe46",
"e103f80b4baa3aaafbe0aa00",
"2b22cddad834228427a72f34"
],
"read": [
"c94c60782deb3f1652923efd",
"8f9ad6b8887c672933af86f5",
"bec0b1d6d14340936dc985e0"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "magna",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "a79a7429967fd3ada7e4f416"
},
"lastModifiedBy": "aliqua in eiusmod magna",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
}
],
"total": 91541471,
"skip": 39572489,
"limit": 58380245
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}