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": "0ca3a816695108acfa8c7495",
"name": "test",
"data": {
"gbac": {
"write": [
"6c4b6f08487b66a07fc928ae",
"15693e72a838d5b57b92a0f7"
],
"read": [
"e8822bfdb50cc8e687482bf9",
"28fa87062ee57e4dd14788cb"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliqua Duis",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "1ab65e3fbd83f91de48be4cd"
},
"lastModifiedBy": "tempor aliquip fugiat sed",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
},
{
"_id": "bb2df056deb1a0ab6a228edf",
"name": "test",
"data": {
"gbac": {
"write": [
"88fd100bea03c2f41dc7ff64",
"f3b46460f6399d96acf12d67",
"0d770543f34df4798581ac4a"
],
"read": [
"9d9b0e2f2bdfe7af6d3af19a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "tempor velit occaecat id",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "dfc8730b139a5a9b332065f3"
},
"lastModifiedBy": "ullamco cillum ea commodo aute",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": 10594873,
"skip": -71014838,
"limit": -121434
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}