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": "264d8972b02a8ed4ccaffffd",
"name": "test",
"data": {
"gbac": {
"write": [
"a3a1dc2819011e46e6fe26ad",
"90ff186e2db2a63bea9216fa"
],
"read": [
"7fc0503cc5d69611699c67f2",
"9d23092d4a6656f175d51527",
"c83d533ae64601e17c2a4c16"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "et",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "b8826cfa6f1db3740468665b"
},
"lastModifiedBy": "ex esse",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
},
{
"_id": "03f1a41c2e1bdf73defd2b52",
"name": "test",
"data": {
"gbac": {
"write": [
"bda66432c7de851664912a60"
],
"read": [
"9468be85649b415a4be8f0b4"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "consequat cupidatat voluptate enim in",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "750631cc632b2bb0af0517d6"
},
"lastModifiedBy": "aute",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
}
],
"total": -54616585,
"skip": -7769665,
"limit": -69377663
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}