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": "dd0c2ed844ef86e0afe0ffeb",
"name": "test",
"data": {
"gbac": {
"write": [
"6b1446556b547324fe3fd078",
"161bc5fc83f38ceb8323b403"
],
"read": [
"33539f3248173795bfbef3b7",
"15677c4c7003757c6553852d",
"c5185ad4bfc17639cc2d7bdf",
"accb0eb154fe50b7a342d27f",
"f24721962184f9327ad07c77"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ut et culpa Lorem ea",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "e2daaf0dae74373e4bf9cac4"
},
"lastModifiedBy": "proident reprehenderit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "a24c9f84cb59c32062d8fd64",
"name": "test",
"data": {
"gbac": {
"write": [
"4333de97325ae48bab90e6a7",
"dc3cc5cea565190e463e790b",
"bbfd1793acd18d21c2a9b5b7"
],
"read": [
"9d65611af8846aafd2d3e147",
"7e1d63a78ec514c07f9ee8ef",
"9b15f120d0b79ab6684d296b",
"7b559bfe33db54246c4ec262"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "est Excepteur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "dcc2703c20a98bcf78328528"
},
"lastModifiedBy": "sed id officia",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
}
],
"total": 46999628,
"skip": -33515083,
"limit": -53176048
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}