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": "edd1dd2edd86efe799f4a3fd",
"name": "test",
"data": {
"gbac": {
"write": [
"171c35a4dce6b7b0529bb64a",
"aa83e9234bb080e8ff542253",
"c012c4c159ca4f467c8bd335",
"c1753ce67b9247b84a241ebe"
],
"read": [
"f686f6c37800686f27a8d6d5",
"7bd0c4d296ded0469e7242fd",
"b5e24d5a6655270e738ffae5"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "deserunt incididunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "8b477289e3a245195ca2b68d"
},
"lastModifiedBy": "consectetur ad enim",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "5ab33c6710cbb0130ee18ca9",
"name": "test",
"data": {
"gbac": {
"write": [
"35309eda43ea6ee02a9771ff"
],
"read": [
"792bcecea256b827a04bb5ec",
"f04f72c9c54112b82910d5c6",
"2ccab4607c1ffb6055003647",
"af90aca5f13e81b23b686064"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "92b304d2f9a4e21b182cfb77"
},
"lastModifiedBy": "dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "2b48fbb2c961939633d22b0c",
"name": "test",
"data": {
"gbac": {
"write": [
"1980fc4dcd24e7e95b1b6afa",
"8ad430a181a9e291334d2677",
"8884fcf65c7a8e2b2d4811ea"
],
"read": [
"6fbab227755100b1fdbe2054",
"00d0be3dd9f16935c292f48d",
"3f20073f59b1c40df16f45fb",
"0f907f0b07e7f8cf39e12949",
"15e47ecdaa463506a0c81d44"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "occaecat consectetur Excepteur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "966cbb8322b5fc4477b80cfa"
},
"lastModifiedBy": "ut eu dolore dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": 34883599,
"skip": -3780277,
"limit": -33913268
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}