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": "995fe58b2afd0df65f628ebf",
"name": "test",
"data": {
"gbac": {
"write": [
"a240f0bc3b73573132e851b9",
"fbe0c00961160e788833d127",
"0d7a86703c82a92c0e6a818d",
"1812af3b1588e3b97271512f",
"2f1317e90332af5aced48fa0"
],
"read": [
"4afc82d3dfbc193b3e1dc24a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "occaecat nostrud reprehenderit aliquip",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "68ff85bed9d3a1377045439f"
},
"lastModifiedBy": "officia consequat adipisicing labore occaecat",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "4555ac599c98717080264c9f",
"name": "test",
"data": {
"gbac": {
"write": [
"72b7fd8791b38103a12232e1"
],
"read": [
"0f8b403f30e8c5e6767595d2",
"17822652173d969b6f329fab",
"411273d56333b2a98bb8f9a5",
"8ffdaaea18fbf3bd5df74c91"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "incididunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "beaa4d1e9df73131dba53e3d"
},
"lastModifiedBy": "nisi in mollit laboris",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
}
],
"total": -64577350,
"skip": 9543473,
"limit": 92058860
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}