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": "d521f50e7fd159c56e043184",
"name": "test",
"data": {
"gbac": {
"write": [
"631c1dabd1a7dfb2e3baec06",
"b3d9c9e574cab750656a4ae9",
"9a4ac239a67f0ea7d5be5109",
"3157a481bbdacbf8495280d1"
],
"read": [
"23f9b75c706cc9eab0490acd",
"cbd40f95c9953060b0c5f423",
"74494ddb2784530ec4627337"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "in incididunt in ullamco Lorem",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "295d01812bc5938f41212fb7"
},
"lastModifiedBy": "aliqua",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
}
],
"total": 3806949,
"skip": -63322983,
"limit": 51455297
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}