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": "0144efca23bf4212a0557a9b",
"name": "test",
"data": {
"gbac": {
"write": [
"4c4c94cdb986a993ec398af1",
"7527ce4b6445201acb2130ee",
"d41c94e82dadb9c37028630b",
"b84c2d09c170ab8d0ca7cbcd",
"129d68fd0f530ef58ba24d07"
],
"read": [
"2e96d3594205f41dac5e52f7",
"198dbd56ba1c401696a7a369"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ad",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "368d14ea6ff7d374f0ad3483"
},
"lastModifiedBy": "ullamco non sunt deserunt",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "8a962b4cb1dbacfc1a02b63c",
"name": "test",
"data": {
"gbac": {
"write": [
"04cdb30537cb458a9554e403",
"834cf7dda953090612b25fc7",
"c0d698a89ef6304cdeee21e1",
"8cb0e567e9cc54d045c53db9",
"17bf3481b03628e8af76f095"
],
"read": [
"1085dfffdf4fcbd3ca7cabbf",
"b0e16c3c110272db250ffce8",
"4ba72926b71bca99c2a31a38",
"c6efcc18f56e8406fc66ef2d",
"9ef2e140739f659c195fa990"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eu dolore cillum commodo",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "0b18404aa93453d108d7612c"
},
"lastModifiedBy": "enim nisi Lorem fugiat ex",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "38fa5edcd17321deb3ee2c98",
"name": "test",
"data": {
"gbac": {
"write": [
"25d2d25fc82e4a665166c964",
"999c453909010ce472e6e367",
"78df6dd15cce422e95f4d2fd",
"7971c50af38da77f72c0ab55"
],
"read": [
"912822b4cde6e34a931452c4",
"9a260f30a452b48c493b917c",
"7381ef61339c24e93a8721e6"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "reprehenderit sit pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "57dde5b61968c2c0c1a81f99"
},
"lastModifiedBy": "officia commodo dolor sint non",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "35c0b50e160703b4a371839d",
"name": "test",
"data": {
"gbac": {
"write": [
"fdbbd14121c2a00ca9fd6905",
"fbd824a8c2216d2b3efa434e"
],
"read": [
"34bd8d84e375d1fa9db811cd",
"e66cebfd56da0bd20f900c9c",
"c9627f482ddf797635ce2b7d",
"c57435bc67fcebf33ae9cfa6",
"c1b8a2fc648f407326a8c115"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolor ea",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "1d0c04521a589f884662b97f"
},
"lastModifiedBy": "commodo in et",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
}
],
"total": -57236601,
"skip": -28877027,
"limit": -82711504
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}