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": "48476e967a2da7d0e395ce90",
"name": "test",
"data": {
"gbac": {
"write": [
"3967b89659e4cb275d0822ac",
"03b6a85567047b3bf3fc462c",
"24e3d520aa337e34fa567827"
],
"read": [
"3847a2dc9d803e80077cc70e"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "nulla",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "339b6028f0cec7652820c7fa"
},
"lastModifiedBy": "irure ut velit voluptate",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "4d5aef38662e68bb701671fe"
},
{
"_id": "34fcf883459811788d38e3b1",
"name": "test",
"data": {
"gbac": {
"write": [
"db427b400b950b00a8f38e0e"
],
"read": [
"78732a79fef0fb96317c901b",
"6c0d27be87f875ea2c19203f",
"8877570f2beb2e96a9cb0c1d",
"75fb797044785b9c97c49011",
"b2abf9cc84c2b0b3a87b0986"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "est laboris in dolore aliquip",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "64c17b6ab6e1895297e87a0e"
},
"lastModifiedBy": "magna irure esse eu et",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "ae180f30aa88b2fb95037beb"
}
],
"total": 67865147,
"skip": -49048921,
"limit": 55206021
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}