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": "14740b042bdb6a78d8b29888",
"name": "test",
"data": {
"gbac": {
"write": [
"8ac37b9cfde9c0e5a8752fea",
"99bad79308a1bdaf13f9a6e6"
],
"read": [
"7310d2316acfb96173428565",
"bee1545b5493615ef8cbdc74",
"37cf481c41ba481b6c2de417",
"40e76d8f26ac8849c8d6701b",
"e775490b53c69bf9e383d1d6"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "magna nisi ullamco sed anim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "6e18667c4f70344c57b15f39"
},
"lastModifiedBy": "culpa occaecat",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "1f9b1543d4e10c4490139a3e"
},
{
"_id": "79a7881059dae1bfbdf9c36c",
"name": "test",
"data": {
"gbac": {
"write": [
"93c6048d3f3689d5b26a76d0",
"2a0c958046b6ed3dd76345d0",
"bc24a32576897a5db005b089",
"7b501f99a73bdcbcced3461b",
"c6a76e89c3401af3953476e0"
],
"read": [
"6464645d17e0e57977473004",
"405b4d7f7c0d1cac083b9784",
"7c25750de11fd59cf0cfbb20",
"7b24c84e556865e626fc25ee"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Duis anim do",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "3f9c829e8707619b7b9488ea"
},
"lastModifiedBy": "fugiat non Ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "c8a16e3f01a9ce957a49a377"
},
{
"_id": "b5a56a766b556006fa432957",
"name": "test",
"data": {
"gbac": {
"write": [
"be6bcc0073ed936c5f405b15",
"455d34da8de03c647dcdd025",
"5c2e7391eb99e3eb27105f4a"
],
"read": [
"13d6d5f04c9ec29abea43264",
"2f1db7c457d2a9a169965acc"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "labore consectetur consequat amet non",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "03f97f70268858c4af52584b"
},
"lastModifiedBy": "minim qui",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "3d9b64925806493acd183a45"
},
{
"_id": "139f62685668a2c3d26dc359",
"name": "test",
"data": {
"gbac": {
"write": [
"657df6bda10950a1a503b325",
"f44a7e8dfa0ce870bcd634c8",
"adf357bdb638d44744e7ac48"
],
"read": [
"c8bf5a4b321fe9387e6eb077",
"f4abd7157d34b1d6b669573e",
"7a231be84b88979f3929dc9e"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ullamco",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "7a01265532a62a598ec17e84"
},
"lastModifiedBy": "qui aute culpa nulla dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "f588efadff0ec06fdd05552b"
}
],
"total": 77013784,
"skip": -56690454,
"limit": -30424191
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}