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": "17945f7f871fd889d564f437",
"name": "test",
"data": {
"gbac": {
"write": [
"681b093965844a3ee5c1f45a",
"18097af223957ef290a768b1",
"8438ecb6cb74e7fc79354330",
"9f0243d718697042cd1c63bb",
"c7f8bbb3c3c9b56de9526aa6"
],
"read": [
"eac306213607eed152bccea8",
"2158145b88f3654d3fad203f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "incididunt elit qui Lorem pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "bbc40aa9ab53e60f814b0a62"
},
"lastModifiedBy": "culpa dolor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "e050932ded9fdd1074ccc555"
}
],
"total": -57692190,
"skip": -392983,
"limit": -16809270
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}