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": "f7c86e4a1dca72f395b4baa1",
"name": "test",
"data": {
"gbac": {
"write": [
"df62dde9c565da3ada8aa081"
],
"read": [
"e3d2e2d42758a1eb8ff74c47"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Ut anim est",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "b2c469f1818841dff8c0ca57"
},
"lastModifiedBy": "est dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "0e51aec1a4cc2bb54bf57ae8"
},
{
"_id": "b0e343cc21c31e9185d20343",
"name": "test",
"data": {
"gbac": {
"write": [
"e08865a95a93641f96e87b70",
"3ff142e8b91adab5b7e62a43"
],
"read": [
"1d476cca31ff1e7695b52007",
"f879b6c5e2bf3888b61c93f5",
"2d808a649fcd72fe17a435a4"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "incididunt Ut non aliquip aliqua",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "0068a82f06f38b6ac8fb9469"
},
"lastModifiedBy": "id qui cillum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "b1c596c8a495a7a8da2833d4"
},
{
"_id": "c11b1d9345f75869dc906eea",
"name": "test",
"data": {
"gbac": {
"write": [
"1a19592b3d25f8d55d787d2b",
"5d9611b80208c96c90e608bc",
"1fb266c0c2893e53f8b0d2f7"
],
"read": [
"f8e7ac740b9e1390c3c37cab",
"67b572305f4c1508b2cb2e52",
"90dd9b3abcb33cf8bbe1424d"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "tempor sed aute officia quis",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "419ae1afa0f28c44e069fa97"
},
"lastModifiedBy": "nisi nostrud",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "85a49ad7f425e26a2a977fa9"
},
{
"_id": "19339bde9e8180e3d0984057",
"name": "test",
"data": {
"gbac": {
"write": [
"0821bcb0615e4196f90eeb2f"
],
"read": [
"b6061b33309f3ac15a17e820",
"359fd10e39df148cef608468",
"ca90ed4282848c60a068b3d1",
"89b08a256ca4ab262ad3175d"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ut",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "6c730debef19077086d91f60"
},
"lastModifiedBy": "mollit sunt elit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "7642f489682d9abb8b3d43ff"
}
],
"total": 82516359,
"skip": -61732689,
"limit": -8170595
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}