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": "ee86ac6b45b956904bbf1c25",
"name": "test",
"data": {
"gbac": {
"write": [
"36ac1306ebf59ec52ab254ca",
"230841c966e5aceac8c370c1",
"8921a3bc1df08f47e499416d",
"0991669dbbfdc163635e0ff4",
"fd8182af0a6bb46ebb7c04eb"
],
"read": [
"a1f9bab6178630cd380e4ea6",
"6dcaf7f91e411149f0ca945f",
"774a2471bee8ff04ebb94180",
"8a29c1797c4eca89ec43394e",
"52b85180bd15f743218533bf"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "deserunt reprehenderit dolor",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "964997ad34ea6ea15419a2e0"
},
"lastModifiedBy": "in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": 87894606,
"skip": 14181877,
"limit": -81990516
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}