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": "eb3e26483d9762d4857ec1d3",
"name": "test",
"data": {
"gbac": {
"write": [
"882289d832923c0e2f2563a9",
"b9012a25fa55811b47554291"
],
"read": [
"62b34a1ecbb081b270ecc610",
"c56665f01f84bb33927dd480",
"e33fec41eceeb480e24f5b17",
"fcd363e79eddcffe05f3120d",
"3f65bfd90e938906fab6f69a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "occaecat tempor adipisicing",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "f8573305384a53acb34f07fc"
},
"lastModifiedBy": "aliquip Lorem voluptate laborum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
},
{
"_id": "84cc400c2261d82e0f6cc0ce",
"name": "test",
"data": {
"gbac": {
"write": [
"4cc2c59278ce29598870fd75",
"1b86f1654b06c04b2c2b337f"
],
"read": [
"6d84dc73f8de04ed4d4949ad",
"9c821f164412502fd1e308e1",
"2f90deac6af9595b55d87d42",
"1ff2863f60a272d75a455d49"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "bd5f048deb37bbbd64bf532d"
},
"lastModifiedBy": "ullamco culpa ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
}
],
"total": 30807551,
"skip": -23605721,
"limit": -44042768
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}