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": "6368bdb36267f5fc2d9c9594",
"name": "test",
"data": {
"gbac": {
"write": [
"3fdfc20fb08427ecc9074f8a",
"7f71a92c21f80f44c04c96da"
],
"read": [
"9091585b2901bdaa71263cb1",
"023f326f703e7ec3eb3edfd8",
"3186c41d3a026f0a19bd952b",
"44bf305e0c8349bc00e752ee",
"df4bd2b0929b23227ca6315f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliquip reprehenderit sed",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "98c746d8c263ac7197602c08"
},
"lastModifiedBy": "nostrud do amet laboris qui",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "d29326d4c64b247678054f7a",
"name": "test",
"data": {
"gbac": {
"write": [
"0f6b33224ba2a22aee38c236",
"0f8ed2f5f5ee15dbabaccea4"
],
"read": [
"ea713c7127efce0279988f80",
"52d44928dedeefe7e22cb738",
"6ee4ad00fe5d886c9157730c"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolore cillum",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "2a85ebcfddffca59814c772c"
},
"lastModifiedBy": "in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "ae362c81efc472ef3c17643d",
"name": "test",
"data": {
"gbac": {
"write": [
"d04796700b738645b840e9d8"
],
"read": [
"0dca9c68444ec2ef360eaa2f",
"61516e00685954851158bfbd",
"b63c652449b42bc0af205b39"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "nulla",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "868fbc559858ce4f84d267fd"
},
"lastModifiedBy": "in laboris cupidatat dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": -26557484,
"skip": -52867314,
"limit": 75602508
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}