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": "e8e8af311887e0df6e7d5529",
"name": "test",
"data": {
"gbac": {
"write": [
"1b77a5dd69b33ae4161a2e92",
"f5d0ae8fa5777456a6ce3dcb"
],
"read": [
"9f3cb77c3397184e47c86cd4",
"c466ca6725ac760469b4d429",
"ca374f091d50e0147a276c4e",
"bfe29a2f9f1a88b89be28abf",
"c9af25d063bb9f7459c2b22a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "deserunt est pariatur anim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "cf08d000b9ae61e5fabf8892"
},
"lastModifiedBy": "labore quis",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "2a62a5fae6c0dd31e004f63f"
},
{
"_id": "ca011f40a6a6fd9ccd73606f",
"name": "test",
"data": {
"gbac": {
"write": [
"2fcce8a0b7c417572636947d",
"55ba355176ecc8082ef4ed98",
"3b6b313a329e81a1f87c6d1a",
"3f7592d2660cb8ad50fd87ae",
"359c5de536b675f76eb807ce"
],
"read": [
"8b01653e8134f5eff1ac3b43",
"d29d617077138e364ebde159"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "qui",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "34dd3c12adbea9f68205308b"
},
"lastModifiedBy": "dolore tempor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "696b08b384f0b358e094baa0"
},
{
"_id": "bf8a8cf2c1b6b7b813cb4491",
"name": "test",
"data": {
"gbac": {
"write": [
"70d0af98fb8c353a4202d47b",
"5592143c01aec1bf731da42d",
"3dc29438ca7b770e21d16162",
"60a1d147db2326ec062161df",
"2e637c945655125770bfbdd9"
],
"read": [
"b2ff840f155efd099d78dd9a",
"652114705a19d31f71c1d092",
"cd4de27fe525ed9a4badcefc"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "incididunt nulla et amet",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "3dcfe0f951d3f91ff778286d"
},
"lastModifiedBy": "labore dolore id amet",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "9fadd5f0f88f6f6cd730adf1"
},
{
"_id": "5ebfe9725c4c77ae8fa1822a",
"name": "test",
"data": {
"gbac": {
"write": [
"b74d621f3b69231581520e08",
"9961f87c9b402e6718e3af4f",
"2da531c4949b3507e8e4abd1"
],
"read": [
"088d2690ae02f7e00424c9ea"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ea exercitation sed",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "ee594d09f26a79138256e28a"
},
"lastModifiedBy": "cupidatat sint in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "65e2d05a292d6768eaaff423"
}
],
"total": -740280,
"skip": -77471940,
"limit": -76216090
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}