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": "22744f467bd746a8495f7aa6",
"name": "test",
"data": {
"gbac": {
"write": [
"10aaf3c8319204761390ed37",
"a884be801a9f29c0ba573a56",
"05b59d0d5252834693bf9e9b",
"9691206e1ab7878198c4da49",
"912cf150811e58b8a5422b36"
],
"read": [
"4348c8dc55c0c1e0a7f038bf"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "deserunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "413cea4bbbe5a8b3f7ce45be"
},
"lastModifiedBy": "velit consectetur non quis",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "67d80031ac7db33a8ea23ea4"
},
{
"_id": "71f2838e0cc6112eab4a77f3",
"name": "test",
"data": {
"gbac": {
"write": [
"c863436f543e773ee83c6dde",
"9430442c8aea222ab34257c2",
"703704258d6db3cdc088aa63",
"f5f2258a721ebf86f18e0c55",
"47a0b0dfafc77a162a2bc6e0"
],
"read": [
"acba96b60cee4a772f745198",
"d0e961423614bd1d58ceee50",
"8651ad1199f0d24645e1b737",
"3912210dcac2085b9a465ff2",
"7d6c1131b9840fc57789d4a9"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "deserunt laborum dolor cupidatat Ut",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "9c13fc94e4eea36b9920c2ae"
},
"lastModifiedBy": "enim Excepteur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "f4b82c2a0d9d90b3730a020b"
},
{
"_id": "1e5e329d098735db494639a9",
"name": "test",
"data": {
"gbac": {
"write": [
"bcb2926a09f009348e973656",
"ceb3cb203eb739e0640f0d25",
"45ab6b16428ea0e2402f9087"
],
"read": [
"e0aae675c8d9ade3b1622ce3",
"2e07939e9504679cdd8b9a07",
"d7e8c1493116cea3022ea6a6"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "velit sed aliqua dolore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "c4af6e1187ea436d0d63524d"
},
"lastModifiedBy": "eiusmod incididunt consectetur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "28584c5038f6707aa46da671"
},
{
"_id": "444d1e1e4081eaa253a1cc09",
"name": "test",
"data": {
"gbac": {
"write": [
"58442e7e70fde195ae4817be",
"8b635d27e0c198fb22bb79d4",
"3d439a0e01d9d09cc0f3b757",
"308dcab863aa0d3de45456a2",
"e448b5d885598652b98b3fd9"
],
"read": [
"f0c643920f8f88aabdfa7083"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "adipisicing",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "4b22a9e9bf67e3e4662f7ca2"
},
"lastModifiedBy": "irure sint",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "95a90fe835eb1c33a01ed71e"
}
],
"total": 19913845,
"skip": 26017571,
"limit": -70213315
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}