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": "3ac574bea0d7160b1a96adbf",
"name": "test",
"data": {
"gbac": {
"write": [
"a2cd8e427b967dfe3b90db39",
"146fe424ccd3e35b631f44eb",
"886712ea38b313879e23a4e3",
"5f516502f920d5a1fe26b75a",
"7f83e87e6b6988a832cd667d"
],
"read": [
"12f530dc64b887d4af4c1543"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "et nisi ex",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "ae67d2422e8856b37add4aef"
},
"lastModifiedBy": "nostrud amet",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "7b7bbeb8fb7a250343f72544",
"name": "test",
"data": {
"gbac": {
"write": [
"711d8d5d910b1958fc5a7e81",
"d4b51ff22dfeb00f49a7527a",
"33958a359565c0513928da7e"
],
"read": [
"2276a7522611a8ae5970d1e3",
"7aa6da0963f1aaf0c5fc0ab4",
"b3ec0499146874bdb03bbfc8"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Lorem exercitation id laborum sit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "43912ba377cfe2d237b1accb"
},
"lastModifiedBy": "ut reprehenderit sunt sed et",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": 74891927,
"skip": 9573903,
"limit": -57146350
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}