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": "73b4e391a3e577f424d4cda2",
"name": "test",
"data": {
"gbac": {
"write": [
"216676443026f3a2d5f42a22",
"354c537ef122edf4710f71ab",
"fe7b628d467dadcbb771b155",
"142996997a1276a53fc8b708"
],
"read": [
"e07d0ae9c4f3981a2428d7c0",
"19aeb938e3d969702ac394ff"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolor dolore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "edbecb9dd2f6301b540155d4"
},
"lastModifiedBy": "ut consequat ea esse",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "3c544881ee878618d82ff081"
}
],
"total": 87112391,
"skip": -79125097,
"limit": -71773248
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}