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": "0baeb8d440d773c3ca7aadbf",
"name": "test",
"data": {
"gbac": {
"write": [
"8fec2401d500a02643e0201b",
"091b008b782a5964f8f788ce"
],
"read": [
"879b71525ac23483fa129608",
"edbd7c70303f52e664f0f140"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolor Duis reprehenderit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "0a0b0a22a82cc057ec55bfd6"
},
"lastModifiedBy": "aliqua laboris voluptate",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "b5de702f831ac3b4829fec8f"
},
{
"_id": "3faa565182f4d6d2cfdfde25",
"name": "test",
"data": {
"gbac": {
"write": [
"97408fa0b7d840a0da1c7759"
],
"read": [
"13835f4b97957344d242f27e",
"0dad1a71a3243711f1e783c9",
"c678d06d51979fec6f8f6430"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "bf2963d0ec731e3a1472fbf8"
},
"lastModifiedBy": "incididunt est veniam ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "015f58b56e8a8f945e53db84"
},
{
"_id": "1f92a7cc35dea85d2b9240cd",
"name": "test",
"data": {
"gbac": {
"write": [
"72fa43363354e73939dad23e"
],
"read": [
"dd3ef6104d956e9a48c34ca6"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ut pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "8ad7926f4fef8c04183379e7"
},
"lastModifiedBy": "anim non consectetur voluptate dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "bd66c4302f14b8d22413840f"
}
],
"total": 35900242,
"skip": 96472746,
"limit": -82425492
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}