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": "fd5864f9b1dfecd1538e8a31",
"name": "test",
"data": {
"gbac": {
"write": [
"2c602bef385fcbfba82a2693",
"3224f19f65198d5b6f520a70"
],
"read": [
"e05030ba5785a01b5716b476",
"f3f9d19c89f4ac83a243ebbb",
"8a3c7a2071d085d4f5115fd5",
"34e4264569ab20ab2d38216f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliquip quis non minim est",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "4e463169d8f2fd944002d773"
},
"lastModifiedBy": "aliqua dolor est elit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "9b95d56509cf3088c35aa678"
},
{
"_id": "f632752a7d1b2b4ce55151f1",
"name": "test",
"data": {
"gbac": {
"write": [
"47040c6ec8766afc3b678d81",
"faeaec07d76b4c783b68535d",
"30dbd5e43a97e0a00602db28",
"f48c1979aad3ac8a59ea0ed6",
"7c1dee31cb687f3396024eb0"
],
"read": [
"3f53d9ad8021e6435bb093b2",
"4f0e7089f36fe197e1bf1082"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "magna laborum deserunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "c410dc1465c5a4f08f08f67a"
},
"lastModifiedBy": "ea",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "4a57016fcbc4a01119f1cba4"
}
],
"total": -78639914,
"skip": -27808165,
"limit": 36563395
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}