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": "10cfbfa80a6cc19719c7db72",
"name": "test",
"data": {
"gbac": {
"write": [
"f8ead88f4abe5d78b943f684",
"f6a36f7acc428fed52bd9235",
"463942a8f5c12030df795bee"
],
"read": [
"cee32a88c3f3be4c37b1a564",
"d3a230e3c86f6a427503931b",
"eec2a9393562673ad1c55471",
"333a0f1d00aaf8fc960ab841"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolor deserunt anim minim labore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "7240b6350003d7cfa25ec118"
},
"lastModifiedBy": "enim deserunt",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "6a985f2b6a99eb1acc3cb8ce"
},
{
"_id": "f2dfcee014c124382e65db51",
"name": "test",
"data": {
"gbac": {
"write": [
"d993214118f8cf13f09cf8a6"
],
"read": [
"440184f1c2171316b1f98c77",
"b013bb87a4af70aca29bfb41",
"39a87a19307df5b5648b93e2",
"35bc2e619e5e8a7ca345a394"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "irure cillum laborum esse adipisicing",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "a8be374833e2ab0045319ad4"
},
"lastModifiedBy": "laborum mollit eiusmod",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "fecc8367cd3e78cb66e43eb4"
}
],
"total": -17693873,
"skip": -49931740,
"limit": -38159167
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}