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": "44aa34e605ab145adde44d40",
"name": "test",
"data": {
"gbac": {
"write": [
"3293c58ecd74d0ceccc9cde6"
],
"read": [
"26b9eef7f32f93e33ee96573",
"cdd37a82cd21e51c3817218a",
"05dbd2f6e453a300758628d9",
"ab96b17617e6011325667883",
"2a88a9232395a31d9f7b37b8"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "laborum laboris ullamco",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "a73fbb6c47136d10fb105162"
},
"lastModifiedBy": "aliqua aliquip",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "69314340eeb126ea907ff146",
"name": "test",
"data": {
"gbac": {
"write": [
"1926b5b27c7d9a623b07afa9"
],
"read": [
"5f1ccdd0439abdfc0c149178",
"f80a1d40139b13d4e9a81630",
"6536ef9c5fcfc67419151161"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "do nostrud ad magna",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "829462895e254d9ceae20b51"
},
"lastModifiedBy": "elit deserunt non",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
}
],
"total": -43726271,
"skip": 25374788,
"limit": 12960870
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}