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": "80e3b247c317e30ac3e22d91",
"name": "test",
"data": {
"gbac": {
"write": [
"576ef18517103fe736c89600",
"f3227142e7739e4ffbe80d84",
"895440de93499516df6856a3",
"cf6e932fc3a581d6e55bbddf"
],
"read": [
"f1265ee878bc370f62e17cea",
"92092a2b9939b305576d63d8"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "laboris pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "7c97dfb856fe4ced51214e07"
},
"lastModifiedBy": "do ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "e91f4209a84d07a55dd7892e"
},
{
"_id": "4bebdaf21c27d75de8388403",
"name": "test",
"data": {
"gbac": {
"write": [
"28994df0861b9f2b5efa4300",
"ef6174930148dfc8eab16d96"
],
"read": [
"324011c84e7e871455a5e765",
"3e2a1913a83a3692d90b609d",
"68f06db6fc31940393cbef90"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ea nisi",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "be57c8d7a360551d4bd8b5a4"
},
"lastModifiedBy": "id irure magna",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "8e9809e925abd8b1da1a8d64"
},
{
"_id": "ab0b4f4083523b464cca237b",
"name": "test",
"data": {
"gbac": {
"write": [
"3e9d9369672bb68a7d61e308"
],
"read": [
"f8510aa7ef631e8ad418216d"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "in dolore anim tempor",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "cdd95a7f464a01de688779f0"
},
"lastModifiedBy": "sit ea aliqua",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "f3fa6b53095e44c69a9948fa"
}
],
"total": 25033595,
"skip": 41326224,
"limit": 1102914
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}