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": "f006b36c9b8641987db3ff77",
"name": "test",
"data": {
"gbac": {
"write": [
"1ae5f909a45c7bd9ddc5bb49",
"345b5b79fdb673edc1624af0",
"f5d361e903abec376c221340",
"ce2fbda45584a983d29a83ea"
],
"read": [
"486b3731fcd8116ff3f2ab3c",
"b8b39a799f6ddcfc0c7d43c9",
"ec90db2b064b095c125565a2"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "esse et commodo fugiat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "babae577b48e83bf55da5eee"
},
"lastModifiedBy": "non voluptate laborum ullamco",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "bc43f8c0ec6ef037f6234762"
},
{
"_id": "1bbf0c70077f2fb0beea13df",
"name": "test",
"data": {
"gbac": {
"write": [
"3cba5b0e1de7d4ae1ecec7c9",
"c8c9fb2012b5b82656afc0c8",
"c7bdb44e1ce43ab49298f88d",
"32c2cea4d385a7ef186adc6d"
],
"read": [
"e2c9f96f0d3cca82b2c4f403"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Lorem ullamco laborum",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "374ff59dc0cc6d981ef06c2e"
},
"lastModifiedBy": "eiusmod dolore voluptate deserunt adipisicing",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "a23108597ab462e3ad3ed4c6"
},
{
"_id": "5456383998d9f45e4bcf5a6c",
"name": "test",
"data": {
"gbac": {
"write": [
"293ab8886439eaf2599b8e08",
"60e135505cc80d326cea4fba"
],
"read": [
"321fdcf14eaf1a01c8b19e8f",
"19d3e194d7bfe38d6c0aa5a1",
"f82714a4574d5de1b563a498",
"4384011923c4d65ff39731b4",
"6663ea271c49c555700dcb5f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sunt aliquip anim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "29f8d674b8f9cdb7805a9d65"
},
"lastModifiedBy": "officia laborum dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "b59902c099000b47881a9c49"
},
{
"_id": "d46e9a888cdfa163eb63d162",
"name": "test",
"data": {
"gbac": {
"write": [
"125f1723fb71cbde672c6bbe"
],
"read": [
"ae1abbefff7949b5e544878c",
"4e2925660b3c6ae364f0792e",
"c6286a329c253c211f36795d",
"6fe472067dcb2f52950a7661"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "tempor",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "67b8e7a64fe4ae8f28013b0c"
},
"lastModifiedBy": "velit eiusmod sed",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "d74c74b9042169871c347e53"
}
],
"total": 65338731,
"skip": 22067118,
"limit": 87192157
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}