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": "998e58e142fd8a865a71cd4b",
"name": "test",
"data": {
"gbac": {
"write": [
"96a1faeae85c62e3bce02bbd",
"5da8c18e36adaaac4a1944b7",
"499fdebad36ab5cc4db08181"
],
"read": [
"5836a7b7f76caabe8ff67fd5",
"c0905cb883acf3901594b689",
"7c037bfa90685e213e288cf3"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolor velit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "b537d282722d3c0557271541"
},
"lastModifiedBy": "cillum dolor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "6cf1507a2474881862ce8eb2"
},
{
"_id": "fde5dca4037ab7f1bef1bd8c",
"name": "test",
"data": {
"gbac": {
"write": [
"7414dc2e9f259d7ffa020f2e",
"1160d91f08e8e050024f4148",
"6f254be3cb689ab6a803ad52",
"b8bf305bb891c52ba1faf505"
],
"read": [
"5b88caf351945f9318e37436",
"1f43ede9f0d6989fdb55c7df",
"0e9a79f9d1f42fb7d9f3cb2f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eu consequat enim consectetur proident",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "0c07a314796eeee022c144b3"
},
"lastModifiedBy": "sed quis ea",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "c3d47e82c1f37ed31ca809c0"
},
{
"_id": "e34444195b8d6f623a8c43d2",
"name": "test",
"data": {
"gbac": {
"write": [
"14c65afa374b2bbbb1aca8fe"
],
"read": [
"5a342e9150e25648dcc64835",
"17e75e65a9f1611f4e37b1cb"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Lorem minim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "2ca3ad2d521eb01a785cd480"
},
"lastModifiedBy": "officia in ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "538efcba33100528ebc524d4"
}
],
"total": 40314869,
"skip": -1881110,
"limit": 86707071
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}