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": "d725193998291867e0252362",
"name": "test",
"data": {
"gbac": {
"write": [
"0644ed39f3958055562b2bbd",
"8964d32257954dd809dceb95",
"cf271673094dfedeec4818a5",
"909dab27205a9fe1d7f7f7e6"
],
"read": [
"626ec6e599e9cdf93a1008b8",
"72c1c6614e55f28340067279"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sunt in",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "4250c649c6be95da162f1c73"
},
"lastModifiedBy": "nisi velit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
}
],
"total": 60878860,
"skip": 68910947,
"limit": -45284695
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}