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": "ecb04138df73cc7737d7ec0a",
"name": "test",
"data": {
"gbac": {
"write": [
"5653f58dc033505d6749ce3a",
"1eb12863894d0b8d1c4ad093"
],
"read": [
"8570a83541cc2239b637840e",
"dcf62aa9dbf2b63eec33cf01",
"793279d9b02dc6100ee7cd77",
"1eff1a6045422ccd9ba4da48"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "anim cillum in",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "815c3ac12914e710b0aa3451"
},
"lastModifiedBy": "tempor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "0a4af55d505c5e17d3f8af23"
}
],
"total": 26338610,
"skip": 27634280,
"limit": 58644898
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}