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": "87ed6be94ac2b41d60b00cf4",
"name": "test",
"data": {
"gbac": {
"write": [
"10d7a2f556609c978da84b25",
"6011abd0d71e1950ebe48377",
"674a86fa4e46831c9525d141"
],
"read": [
"25805b47bf75cac4222641d0",
"91ae5604370a0a0777871d24",
"a4d343433bcec9d643b3a91a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "pariatur do",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "3416768002bf44906796ef8a"
},
"lastModifiedBy": "labore id cillum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "e2a9240323aacb4adbedab30"
}
],
"total": -87210304,
"skip": -36979801,
"limit": 35977189
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}