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": "d90830cba88f95796429377c",
"name": "test",
"data": {
"gbac": {
"write": [
"b711fb40e2371d24181ae99a",
"cce1b8b8ca4d99ebf5f3b9ae",
"06229ed59f8a93d74885855f",
"ed9f9a52164a7f41bed48c91",
"d2963a39e10555c580708236"
],
"read": [
"0cee332ca331a8142708df58",
"eee19eee51f64ae6f479bc88",
"50abe61c6e3cc555fedc4942"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Duis non",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "b3e47ff211335234ded388ea"
},
"lastModifiedBy": "est",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "bfef03f48ccb8d9b388536c9"
},
{
"_id": "b190093c1a97def41f0caaac",
"name": "test",
"data": {
"gbac": {
"write": [
"ca95f0a410c716ef70cc77f7",
"067aa84da7c36a0e82207ed9"
],
"read": [
"938a1501019590891ba629b5",
"20c294380f4c4cce92421523",
"5b7f0c01715c5d0eda31f1a3",
"aa903ab24c99aca9d7b3a639"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "consectetur sint sunt do labore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "eddd008e655339f8c16e2bbc"
},
"lastModifiedBy": "esse aliquip cupidatat",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "b569ef419861a817e9ea71a9"
},
{
"_id": "2baeca270f2cf51ad7eaadf7",
"name": "test",
"data": {
"gbac": {
"write": [
"9da9dd8e888db2bbcbb43596",
"435f503178cc1a16ce28309a",
"9101e071b7dd7b95446173ee",
"a8c9f65ae312ac9eb9e29ce1",
"84b5f14e6b609b26a330645f"
],
"read": [
"e8bd02658aed481746a3b036",
"7f95f6764b020f0ddd34e723",
"6792b31e942866bfe472fc68",
"3b72892684709c8c84abe5f4",
"527eb42d1944f15bfb13f572"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "magna proident",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "48ec2d3952740e53b528d7e9"
},
"lastModifiedBy": "dolore voluptate",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "aceac7cfd167eac900081101"
},
{
"_id": "763870b93ecdab5b3e67df5c",
"name": "test",
"data": {
"gbac": {
"write": [
"cafb7e087718d95fd45c1101",
"4d49a821f286b56ee2e6841d"
],
"read": [
"1b891b299a41cfaa29b8dbec",
"5b068370f02825c49ff8d3c8"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "proident",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "34a219140c4a89e02164bcae"
},
"lastModifiedBy": "enim ad in sit anim",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "94a6ec3b3f11a238f739af80"
}
],
"total": 64781341,
"skip": 64057685,
"limit": 22617164
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}