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": "b93a0d02050c9a7ee1598e36",
"name": "test",
"data": {
"gbac": {
"write": [
"87b0b53c631087c606a3a266",
"cb91ad76484cc93168333bf9"
],
"read": [
"6bb2faf7c313b0288876c8b7",
"2786bfbb5123a1b9906e5bc4",
"4b92b23ef3c9fff1338dd5ee",
"ecdee1d6dc5f8fc00e8fff21",
"b40d156ea42d7aa4a55e7449"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "adipisicing do anim pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "ea44937f60877b872fcf6169"
},
"lastModifiedBy": "ipsum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "ef07da99ba2dbb814b18702e"
}
],
"total": -11361973,
"skip": -94229039,
"limit": -37523885
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}