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": "bdcce92811c1952a39f1ff6f",
"name": "test",
"data": {
"gbac": {
"write": [
"542dbd4179b68e66094ba117",
"68112ed0d7549e786e421dee",
"c85a282225c1585e7c86f810",
"1eaca49f0ef6a60c5f981ff8",
"1c3e2536e761ad1e29e5fea6"
],
"read": [
"74829192c4502bb843a15cec",
"62b491f32bd7664ad29bd7ec",
"a1eb2b396a689882e4c4fbf1",
"5da08daa9c477c80d22801e4",
"166a64c06276cf56f96ba47a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Ut exercitation magna qui do",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "735fc89e96d0734f210d96d5"
},
"lastModifiedBy": "sunt dolore Ut Lorem",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "0df1616db43e10ae7924dcae"
},
{
"_id": "fe37ba0bebdc26ee3594d3d8",
"name": "test",
"data": {
"gbac": {
"write": [
"642920fbf739112b5e881293",
"83673fe9bc633fe38a99dc30",
"d59b985359d7f59d3cb0d070",
"9d9883ab28e7381b707c2798",
"cbe8715bec2080eb3dd2f9cf"
],
"read": [
"ba04d5ed4a48a44d6dfd2f54",
"68fc4d9e70b2d2ce222f060e"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "adipisicing",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "14b65061d6f843a7f3e233ef"
},
"lastModifiedBy": "et esse dolore sint amet",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "58e6bfc9fc4b3071a69e691a"
}
],
"total": -37267609,
"skip": -71310511,
"limit": -36867465
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}