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": "4a1ef30bfae839bc4bdacc25",
"name": "test",
"data": {
"gbac": {
"write": [
"8e8282a50d6e92464a63fb53",
"c43328b4c11a1f47b8c452da",
"a61be78cbc1b055738fd0fa9",
"0165c44eb6862448003a94dd",
"678035e2110f645839ec1201"
],
"read": [
"c2a065e3b731d354be423fe0",
"ce93e2c48b5732d38090bcef",
"367a5c8a17cf61b7e73742ed",
"2d5ed82b16f0af44733846da"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "nostrud",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "f1dcaea568ff63ea6d2ed205"
},
"lastModifiedBy": "Duis magna",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "10f80823c7ff9a54cfcef77d",
"name": "test",
"data": {
"gbac": {
"write": [
"eea0505914bdfe39071a24df",
"afc1ea29f352ed386d4b3327",
"535b5995004589f3a0091ee8",
"fc8f8c640f223f6aa9bde9d4"
],
"read": [
"be0f742b73c155b458b7364d"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ea commodo eiusmod amet pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "b09eecd8d9c1d4e9c8bcdd48"
},
"lastModifiedBy": "voluptate",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "c63585c4a95e85982f482681",
"name": "test",
"data": {
"gbac": {
"write": [
"1c50077e1ac4e3b0efcb6355",
"2fcd5c2bd33cfca686276236",
"6b1412692a6c13ca48dfd80d",
"08396e6afbc6be63ad99eadf",
"89a26a162edc21b01e1332c6"
],
"read": [
"4638987d0538a85393cc956a",
"96f9714ec3e8cf3cf5e1a95c"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "id laboris",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "82507f14bb1250a0148cebbe"
},
"lastModifiedBy": "elit ea Duis nisi",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "5ba4ad306b9ef939b0ca7d23",
"name": "test",
"data": {
"gbac": {
"write": [
"f6e4678db09d3a089c3c08ec",
"71af48fa51b9c313eb6f978c",
"2c807dcc7b2e9707be669873",
"9c5be57b8bef9da604efc13f",
"fe1908056678d76b010aec59"
],
"read": [
"80f96c2fb339957a0a03296e",
"cd0420890e80c5686b4432f5"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "laborum",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "e5af5badbcd541e7d033fcdd"
},
"lastModifiedBy": "voluptate do in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
}
],
"total": -92763064,
"skip": -98543244,
"limit": 87876965
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}