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": "3fd29b09056b8efdfd2ad435",
"name": "test",
"data": {
"gbac": {
"write": [
"8852ef4123badc3dc724321e",
"dc7f85d183bf66160571f7fe",
"8311d3ebea16efa1900ef934",
"0e6823b75767cb8ba6b1ccfe",
"4dedd935ceb547726445c76d"
],
"read": [
"8932f5e7dbe096d2cf31c299",
"98f5792a257207468a7494fc",
"b7f069f0a34bff302c901042",
"390872b2d1e3beeec31f5afb",
"087a1be9f040e76319d19e63"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ipsum labore pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "40101b91aa33792e22a4050e"
},
"lastModifiedBy": "adipisicing mollit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "c289a364ea5bd40d5a161ada"
},
{
"_id": "73f251d0397fe493e0b948aa",
"name": "test",
"data": {
"gbac": {
"write": [
"287c92e1da32f8ef23e973b9",
"cccadab7526a844149b8cd56"
],
"read": [
"5e49240db4cef06fd109d8c3"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "fugiat incididunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "8b81a70afb9dad81de796147"
},
"lastModifiedBy": "proident ad veniam",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "2bd9d1c8282590c99d65e7f5"
},
{
"_id": "421d598cd95abed7bd0159ec",
"name": "test",
"data": {
"gbac": {
"write": [
"bafe492026fa9db2121ae19a"
],
"read": [
"d42cf2bed238d551f0bea59f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliqua consequat mollit anim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "838ec476e2564930b806d677"
},
"lastModifiedBy": "officia adipisicing est Ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "0ea291ae526108dc0e728378"
}
],
"total": -67223691,
"skip": -23997206,
"limit": -32734634
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}