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": "59356419a9999674f8d82a49",
"name": "My fancy automation name",
"data": {
"description": "ipsum",
"workflowId": "4750a1ad3f42a085815302c2",
"groups": [
"be559b8042e3585e9a5aafff",
"8d271f3e0ab85af7f9c96ce7",
"be981d754ef5989570a36ffb",
"cf0b592c01740fbbfa248750"
]
},
"nextRunAt": "1975-03-27T13:48:56.279Z",
"repeatInterval": "3 weeks"
},
{
"_id": "1174edbb321cf63ed1e697a3",
"name": "My fancy automation name",
"data": {
"description": "magna",
"workflowId": "19c08694855fe1d7cd66be26",
"groups": [
"53cbe2ed1aa5dac62ef878a3",
"5fd2b097bbf7048fcfe7ce2a",
"6bb764c0cdd6e81edefd8a49",
"13c9ebe56d4ae33628282db7"
]
},
"nextRunAt": "1947-11-23T21:39:58.054Z",
"repeatInterval": "2 months"
},
{
"_id": "29c3b9c37e67a7addb768fdf",
"name": "My fancy automation name",
"data": {
"description": "consequat proident deserunt",
"workflowId": "9a513373350750c5688685e1",
"groups": [
"0586d3b8ffe7f6b36eb3a6ec"
]
},
"nextRunAt": "1979-02-23T04:10:09.028Z",
"repeatInterval": "1 hour"
}
]
Copied to Clipboard
{
"title": "result",
"type": "array",
"items": {
"$ref": "automationDocument"
}
}