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 |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
result |
array |
List of all automation documents |
Copied to Clipboard
[
{
"_id": "aa6cca6d4bf6f5d3f1bf3a51",
"name": "My fancy automation name",
"data": {
"description": "deserunt tempor occaecat",
"workflowId": "56374df1d077961c7708bd27",
"groups": [
"f96ab97195b838c1d301519b",
"b9d1ea63e7e75b9930c48d52",
"266235d5ab077426129a3cba",
"5492f2401b5431a6d546da29",
"ada5af96e0e027ef13d34f8f"
]
},
"nextRunAt": "1943-01-29T16:25:54.169Z",
"repeatInterval": "1 hour"
}
]
Copied to Clipboard
{
"title": "result",
"type": "array",
"items": {
"$ref": "automationDocument"
}
}