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": "a6578fcbe9df3f71a35730b2",
"name": "test",
"data": {
"gbac": {
"write": [
"75283ba37a7fe0409a7a858a",
"111bd6ae4095e787ce7e5204",
"bbff82c24a7a34c22f575922",
"fee7e2c244e1f87a36394649",
"900ce096fbbb1dc075d328c3"
],
"read": [
"83825f70e77435033e362a0e",
"9c6e68493b928589af98af3a",
"ca6f60a791f8dc674783f200",
"82cefc0d1328ba6b84ddb501",
"92db4c21e35551cffaffa16b"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ipsum exercitation",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "d89b0328eaf9df1c4b562f91"
},
"lastModifiedBy": "id exercitation aliqua",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "ca3461043ea0392d1be633fd"
}
],
"total": 54339133,
"skip": 98514187,
"limit": -96089550
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}