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": "77a48a2a3dc8acda07032b44",
"name": "test",
"data": {
"gbac": {
"write": [
"8c2cf02204e347f8af394878",
"432eddee442ae56725453d2f",
"2deccd6b96dfdad3bd467780"
],
"read": [
"2dcc979fc3618cdf5445504a",
"5124fe3c2ae861960d1e77b6",
"53ca9e164da16254e3ee767f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "reprehenderit laborum minim dolor",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "26dd3e0435fa5e11a1cce762"
},
"lastModifiedBy": "do est amet consequat et",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": 59357274,
"skip": 37511541,
"limit": -26850497
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}