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": "18ba3c32c438717046d22782",
"name": "test",
"data": {
"gbac": {
"write": [
"645ecb7a67a961b734b9f8ac",
"06c0ea487f963e7a60a1038c",
"3a130882bcc160d0ec86294e",
"7c1069babeb085f62f3f76ce",
"578216f49c04836cc19f0d9a"
],
"read": [
"548ac5416645423d85f2fab2",
"77d1c7444794c4ae2105cb4b",
"cf6b50f2e3636224c8267c50",
"ff35ec638a2c459b07a5a84f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "exercitation consectetur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "42fd4fbce41218cb43b86166"
},
"lastModifiedBy": "Lorem",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
}
],
"total": 5700121,
"skip": 43149119,
"limit": -67439796
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}