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": "b37cd91062961a8a14c812e3",
"name": "test",
"data": {
"gbac": {
"write": [
"234218ae28b99dd56db8b6c5",
"ea0b2acf96ff0390d4dbc176"
],
"read": [
"cf54c05d3eabc815b3d87213",
"4eb5beb112f91d52df68a2d8",
"fd609018e20b944449dacf41",
"ad16e77385e8b3531342e866",
"f9e016668bd03d109802b08f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "mollit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "fabc0932648f1251ae32cca1"
},
"lastModifiedBy": "veniam fugiat Excepteur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "dfce1bda52c029d43399d7ce"
},
{
"_id": "725b5ef69a8bc37c927dbd76",
"name": "test",
"data": {
"gbac": {
"write": [
"61a07ee3d88c56ec7a22a5bb",
"e6fa71d546b9c963b355840a"
],
"read": [
"aca7d2f0d38e09427b543a83",
"90e6532eb139ede91e3fbbab",
"424bdefa0f2fac22be9b20c1",
"ac1d984d1bcd3592d3a9519d"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "cillum nisi",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "f5d75d459d648972da203833"
},
"lastModifiedBy": "commodo laborum est do",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "8deb17fc4598de997b5999fe"
},
{
"_id": "5ff17aa799ceb80976cbd4da",
"name": "test",
"data": {
"gbac": {
"write": [
"2efd2391cc65bc16bc13da2a",
"7ee79edd9ca164203ba1c863",
"b5cf7b0897e6e4f9294b9ffe",
"5579ff370c7e84c0843d28fd"
],
"read": [
"d864b2bd03f6daf7d1fd26c3",
"294c98db7f2567cfc9c57f28",
"742cbfa90fcca1fcdab125ba"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "exercitation",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "7621327c4406e3fdd63bfd35"
},
"lastModifiedBy": "dolore culpa adipisicing minim",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "98eb9cc705a88a5b809ac4fa"
}
],
"total": 18674304,
"skip": -50888245,
"limit": 24252964
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}