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": "ae4a3941d4ab9b45872eed2f",
"name": "test",
"data": {
"gbac": {
"write": [
"70c65889d6c2044531267122",
"33d338574d13eb725d5a7614"
],
"read": [
"0ce6212ac88a9ca594767934",
"c74317070e8de33549218fd1",
"d9ed42a4d9b07f75de0cce44"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "nostrud magna pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "a23193cc7a9df6aabfdfb23f"
},
"lastModifiedBy": "ex amet",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "3fbee38b5600749cb841eab2"
},
{
"_id": "d20b8d8cc18e8b8678288360",
"name": "test",
"data": {
"gbac": {
"write": [
"e9f8c5dabcda0c99a542e9b3",
"0b979ff188c7838f3bebe456",
"d40ab4f2128f53a2dab99faf"
],
"read": [
"7c30935d4cae8ee97f730854",
"fa6e5d68d73b2686eea1afef",
"d259c0664bcf5e701e7811fb",
"bd30ee7ad4310030f8da204b",
"dd5f4496a557e6622cbc7d54"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "voluptate amet Duis dolore qui",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "24478a78a825c96814b82c16"
},
"lastModifiedBy": "anim irure amet",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "26aea93a7e0391d09e8d2e8a"
}
],
"total": -10341708,
"skip": 78631231,
"limit": 87077487
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}