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": "a5a700b703179c4d2d900a07",
"name": "test",
"data": {
"gbac": {
"write": [
"4e4f82439472d28cb71a6612",
"dd3210839794f9df711f9094",
"889c4b3a1e66e65e3d417562"
],
"read": [
"e32f032b227b7c26b2a4b382"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "et",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "8300a5f24acc2d542df57758"
},
"lastModifiedBy": "laboris sed Lorem exercitation in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
},
{
"_id": "0f9c6842578caee12da50c3e",
"name": "test",
"data": {
"gbac": {
"write": [
"7bf0f701e8e97d9527cc86b2",
"5d9670dd69e5276e9e577a43",
"644f6a1b62fe8f082e1a1ee0",
"558844cffb294ce22cd95101",
"5255f98d442c78da2b95a7fb"
],
"read": [
"4297ef734848ad0784884bab"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "voluptate pariatur irure veniam",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "f4287e29c4ec5d273efb05dc"
},
"lastModifiedBy": "commodo",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "1285042d15603a3261dfde06",
"name": "test",
"data": {
"gbac": {
"write": [
"1329d348556f854e6809e0dc",
"6c77d28bb671ba4d99cfb876",
"ac24f1e292343f7eb8ba8b4b",
"f3e28fa17510b83478929cbe"
],
"read": [
"8affd39326c2231622c65da3",
"b68e80f444fda5e20b38652a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolor veniam",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "15e519a6af773cc07fc3106f"
},
"lastModifiedBy": "cupidatat voluptate laboris Lorem esse",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": 59654129,
"skip": -19454389,
"limit": 3573463
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}