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": "1b57c74f7c2a84a4cfa85078",
"name": "test",
"data": {
"gbac": {
"write": [
"f8e0ab3daec326b6bf285505",
"cb7e2562fd5f9989261266f0",
"aea90652ab5279eda96ea636"
],
"read": [
"67a0a6de4d91d8cf49ecac18",
"21b9d28c98b1f07dc750caa9",
"71994bbae289dbd33bb1841d",
"dd9180eb1d6cc344427d3c58"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "in",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "65f65fddad1ab80fbc6fcee6"
},
"lastModifiedBy": "ad",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "82f8b3cfc47574aaf21603dd"
},
{
"_id": "7c712cba1f79dabe21c0a152",
"name": "test",
"data": {
"gbac": {
"write": [
"4d1b91b28d6bccf34ac45cfc"
],
"read": [
"6fd62ac275e87b8b9c54f1a7",
"6d1ff2da0e856ca0510e45af",
"903cf3a9f70284be79ea16a6"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eu cupidatat sint ut",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "93fd780acbbab31e32034db8"
},
"lastModifiedBy": "reprehenderit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "a5032c1dd715a6fc881055a3"
},
{
"_id": "275e7681a2a5a26b117783b0",
"name": "test",
"data": {
"gbac": {
"write": [
"b715cea0983659745173cf83",
"a1be6c15459c68ea5b05e7de"
],
"read": [
"dceaf6fa8d6f43be0f508a28"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliqua incididunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "13ee75f101c7c299fcb28e4b"
},
"lastModifiedBy": "cupidatat",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "7b3683eca5abf083e5a2e77b"
}
],
"total": 48498383,
"skip": 19616577,
"limit": -42384062
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}