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": "775278f664ee8b733d2d490d",
"name": "test",
"data": {
"gbac": {
"write": [
"7c428a330d0307320a6724f5",
"42d28fa7b99db22ecb0e3cc6",
"c0877b22b0eea6f267f2c018",
"18587e365566d5010ada55ad",
"3ba18c5dad904e5ed414bc29"
],
"read": [
"7afa98d00e7f0936c89c316d"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "quis",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "9a089ff858ddfd96d198b6d1"
},
"lastModifiedBy": "ipsum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "f12285d59c4e2de62115da88",
"name": "test",
"data": {
"gbac": {
"write": [
"4266d9fed7ae6a00cdfd74cc"
],
"read": [
"c8e41838b6d7260f1a50c9e2",
"ab12de49949adbc956572151"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Lorem ad eiusmod ipsum sed",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "c2785eb917800b35b5e26eae"
},
"lastModifiedBy": "aliqua esse incididunt labore pariatur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "7814a78b5cf36cf07f715123",
"name": "test",
"data": {
"gbac": {
"write": [
"b0f5bd80dd8df4819334daa1",
"08079dc38d7731e29e9d22c8",
"7735e6d89947b22e0131ab44",
"a560778cdaf48b42bebb0d1f"
],
"read": [
"4933c2bf6a6733122631a2f8",
"8f36a5a233cbe1a3f926325f",
"e76794d530cef8cdcede8a14"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "fugiat non minim ut",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "5f76f53abcd3b405a70b6c02"
},
"lastModifiedBy": "eu pariatur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
}
],
"total": 99685101,
"skip": -47692326,
"limit": 58985865
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}