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": "66e5562cf54e6f17cf4da15d",
"name": "test",
"data": {
"gbac": {
"write": [
"aa8f33eca6f2a1a5a7b8326d",
"fb64fe3e6065a4795969ca43",
"bacc37c5f5ca54f68e56d2e9",
"8374c9abab7c0cd183cc919f"
],
"read": [
"da08c02789d0b51938be9771",
"9e341adf26ca477ae75cb544",
"20ad05a92aad593fed741797"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "et",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "424c21f673c1c2b8d419150d"
},
"lastModifiedBy": "voluptate dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
},
{
"_id": "3b56366bd1db3f344d8d08ed",
"name": "test",
"data": {
"gbac": {
"write": [
"b7694e99b225847fbf3e9e25",
"2075cc5d92b727b37191fd9e",
"905b607eb004a4b8d7fe56ee"
],
"read": [
"20f98afa3bcd3c1c0dcd789a",
"5f1ce31ad6a0af8abb249944",
"1acb7913a40e12ccc359ddfb",
"563e7ed4e921e7e233fd2f98",
"b6d92dc6f6cd8384a8b40d47"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "anim laboris ut dolore aute",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "979b2666602cd5815a3217f9"
},
"lastModifiedBy": "ut eiusmod incididunt est",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
},
{
"_id": "cd526ce7ca6482b0570bacd8",
"name": "test",
"data": {
"gbac": {
"write": [
"b82db8cffe1af85fe6a754bf",
"2e6f7b40010fb339cd275093",
"1505a74201d963abc9f8e23a",
"6d15ac499fbc75393afd26f6",
"e0b8e4d2e034916265636b54"
],
"read": [
"61e90b410393e2453cf1095e",
"39ea69a851b1beb4e30de443",
"c81640d72d6528c0f4b59a97",
"c54a6e36250633e893849b0c",
"55b0554ea5877d0677f28f6f"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "aliqua veniam ipsum",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "1ca56efc606763185de9d2b1"
},
"lastModifiedBy": "ad sed amet velit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "db22723a67687feca3efed29",
"name": "test",
"data": {
"gbac": {
"write": [
"38f5b293e92ced1be26b6df3"
],
"read": [
"700af6135c8ad2434357147e",
"e5305acf82e5585dfb36f066",
"af99ed372a3ad67fad64bd5a",
"2e02b48ed8391b0839c7382e"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ex",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "3e636e6af5f0e8bf206b16be"
},
"lastModifiedBy": "ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
}
],
"total": -9437346,
"skip": 7609008,
"limit": -6837568
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}