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": "51898df3c0c8d7f1d66250ae",
"name": "test",
"data": {
"gbac": {
"write": [
"92b2c7723ed76c859808ca0e",
"ecb5bfcd6dfeb1c3ebd3f833",
"aa24165f94ba8e9d1bd5fbee"
],
"read": [
"adc9f1488042549067ec4084"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "in quis",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "abb0706591232e1c6a924e9f"
},
"lastModifiedBy": "do ut mollit in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "2e78984a2c4443aa08ee2879",
"name": "test",
"data": {
"gbac": {
"write": [
"af120e24739cb37a110154cf",
"e9b810d517730cd0c3ce918c",
"30d9602dd7e896816cd59e41",
"2f9315b58c21dbe3170a5b60",
"ab8b4fb041f71033a64b1ef4"
],
"read": [
"bfee86dfd3206a7ba6bf918a",
"1bb5e4ecfb5822c64dec516b",
"c9650531ee4e295fbb970053"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ipsum veniam est occaecat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "5ef3ee099738d57734028a0c"
},
"lastModifiedBy": "eiusmod laboris ex et",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "f7fc78572d8a6b109d94b454",
"name": "test",
"data": {
"gbac": {
"write": [
"f324477aa62e811d916dc693",
"bce7ba69cd36f81b2c6e0e9c"
],
"read": [
"9ce7bf5262d03d67236cf09a",
"f0915d82d0b88e7ce4330590"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Excepteur veniam",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "794b5fdfebac929156ad6692"
},
"lastModifiedBy": "commodo",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
}
],
"total": 69135927,
"skip": 7316666,
"limit": -89198212
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}