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": "e795dcbfd71e364dccdf24b3",
"name": "test",
"data": {
"gbac": {
"write": [
"b6b207191d55daacf29789c9",
"fc4db018944dc162bd730444",
"4c06e82f8fdd34dab6ff5cf5",
"7b5adca2498b7ba4c203f3b5",
"8f7b68631734538d52f5105b"
],
"read": [
"889c4b1284ada911d3b1f77c",
"23f51a7e8f059e2679620b1a",
"5ef672886519d2285b744d50",
"192e83d170a64c6705abdee5",
"0c40d36a20205e240991c7a2"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sit reprehenderit mollit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "cac304015e79d63eaa144e13"
},
"lastModifiedBy": "sit ut fugiat",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
}
],
"total": 83529186,
"skip": 55869383,
"limit": 21404286
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}