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": "9d854baf2b6932420ae6c850",
"name": "test",
"data": {
"gbac": {
"write": [
"044de86a5c377f00b16202c8",
"4fd01c5ee0576832f7a3d589",
"de52d8f79193480bdf2c8a29",
"ffd68f1d44fd3da3563e7711",
"14eeb8dede578669ca15d53f"
],
"read": [
"a0110e0b6d6191ffcbf3bcb2",
"769fef202647cc4c05b4aaf6",
"032efd8b38f3c6a80cb99854"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sint",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "0877ee4fde63c861de5a7158"
},
"lastModifiedBy": "esse ea in consequat amet",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "5336f021152e32880bed9e0c"
},
{
"_id": "c0fce63b9937c6ae711b8823",
"name": "test",
"data": {
"gbac": {
"write": [
"9da02739b2abd9875aa9f25f",
"8a9af12f535f121d0347f5b0"
],
"read": [
"a89a5f67bde3d65aafb5de8a",
"79130313c5d51e201bb13496",
"ef2e0cf519ea4597a3af7b72",
"410c9ec6ccd79a7881b17927"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "cupidatat reprehenderit non consectetur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "f857505d4b4da27f1b7e8b13"
},
"lastModifiedBy": "sunt culpa irure deserunt",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "c0091716e0bddfa6242bc47b"
},
{
"_id": "322557fcc0c359142e7ca7fc",
"name": "test",
"data": {
"gbac": {
"write": [
"fcd060f42651f32ea96de19d",
"90099357e11b72c1779c04bb",
"eecb794326919f7475a70582",
"40f53168b6f9b82e1410da2a",
"e1ee3cc53de643d997d4a250"
],
"read": [
"b784ae3c9db6aee44017f102",
"fed5fed3633564e4b0ab93c7"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "esse",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "6a352e77a3080d0c41f5b073"
},
"lastModifiedBy": "aliqua ullamco eiusmod",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "212878aee3535915b435c677"
}
],
"total": 27145162,
"skip": -65720320,
"limit": -18780138
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}