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": "ef5d5d8e2fa0b362a85cba59",
"name": "test",
"data": {
"gbac": {
"write": [
"d92f27a6ad876f4df0bd53c4",
"532ff9d5de3e4cd229193bf9",
"ce75f386fd4d1d3632d2e3b6"
],
"read": [
"e9f92dba1eab7029d11f54c9"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eu",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "34e81f3a9664cf56e7d8780a"
},
"lastModifiedBy": "incididunt consectetur sunt aliqua",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "efd297649825064e2ee5ad9c",
"name": "test",
"data": {
"gbac": {
"write": [
"d94209d53018320d07a6fe8c"
],
"read": [
"1ef5347265c9b51c321c1ef5",
"39b56d76e0f27fdaa8681bff",
"d615de546d2d27c43769ef76",
"d182adbd1dff02def1a66de8",
"16ad116b2cbdbc4c88c1cb9c"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "Duis sit Lorem",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "70bdc003c6d051abfc7c1950"
},
"lastModifiedBy": "aliquip occaecat reprehenderit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "3319c692f9ee8e8825d6a26a",
"name": "test",
"data": {
"gbac": {
"write": [
"17ec4ff9b80680a16972108a",
"687a10c1806a448b798982c2"
],
"read": [
"300fb2e7c48366d2d836a1a6",
"f3544324e71d8df294df44b1",
"dbb7bbe804531e6094daa3de",
"8a30e12f8efffe5771363e6c",
"e1d1b75e47a4134745a1c3a1"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "exercitation",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "16c17d7fdea422b3946a6c40"
},
"lastModifiedBy": "eiusmod minim tempor",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "b1d2b9afe32c15e31b5b9ab2",
"name": "test",
"data": {
"gbac": {
"write": [
"45838834668760731a1fd332",
"fb60dba096adcf2df6e4b33d",
"ad8b565165f61d44710e89de",
"0e0213a02d8dc6ceab2ffad6",
"65a990f44cb154cebc16b22f"
],
"read": [
"e301bbb57e711424fb05a4f6",
"91a5a7be2d434613ee24c700"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "cillum culpa",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "77b0416930eb0a1948701cdc"
},
"lastModifiedBy": "ullamco",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
}
],
"total": -57541130,
"skip": 73757979,
"limit": 90176487
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}