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": "b57f3f94533ef61869113ef1",
"name": "test",
"data": {
"gbac": {
"write": [
"35aeb491429ba3442d6fd711",
"e543ab8693087a9f5c17196d",
"4b9d573fb9a4e328d53e2a50",
"a8c4cdcf4698f1fc43c6ab1f",
"b120eefaf3242580a756f989"
],
"read": [
"ce07057a0be3f2afa0a08e65",
"ed8d32d5f62ab7e866f67984",
"3ff3a91e519fd3025f66b412",
"4f269c63444de58863e4f670"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sed voluptate dolore incididunt pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "2e336a663ebcd2b16b82b725"
},
"lastModifiedBy": "ipsum do",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "19a2a8537514252f93ee1a31"
},
{
"_id": "0c0ddf8b93fa2a693aaf52fb",
"name": "test",
"data": {
"gbac": {
"write": [
"df8bbdeea5228ccd24c6d2a0",
"d68e66df785de1f272d5c65c"
],
"read": [
"346146ce52b91b8b0baafa24",
"5f003d0b422a78ee06d4bbe2",
"efefa1bc272aa33350d63ff7"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eiusmod culpa ea fugiat deserunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "ccdbdb0b94dee6f12a769352"
},
"lastModifiedBy": "dolor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "1134dcb384b9e607435628d4"
},
{
"_id": "076ff3e19e44db39831a8dd3",
"name": "test",
"data": {
"gbac": {
"write": [
"6880da994459a512f5ea3412",
"e44cca858fbd24fecc2dcc1a",
"f12eb0f86c08fe4e339a109c",
"2e7cac64ccd3722f1cbc5128"
],
"read": [
"72a826b1c5dc4a9854836479",
"5eec6b6fb2f06bdbada22b4d",
"8677d5f498a9a075de273f81"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "irure aliquip nisi dolore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "ac4cb7bc42e72ade282861c4"
},
"lastModifiedBy": "culpa",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "63ea88a2f4bc829ee77b327a"
},
{
"_id": "4a2d1cfffd92a8f23f998ce3",
"name": "test",
"data": {
"gbac": {
"write": [
"1d2a099c1fcd78ee4d99d213",
"a19f28a717e9131940e59915",
"80f2e6c1f15226a4d328ab96",
"fcc04e8120da7c9b01743539",
"6991a018f4cb47a4dffe7322"
],
"read": [
"809ed8a635ab0e3a38952e94"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Ut Lorem mollit sed eiusmod",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "73b02fed66fbea50690430db"
},
"lastModifiedBy": "ex officia",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "3f9b02bb486df5383df028d2"
}
],
"total": -71938899,
"skip": 96992637,
"limit": -62518246
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}