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": "c0dd924a33749d543b96fc30",
"name": "test",
"data": {
"gbac": {
"write": [
"dfc30dfdf492ba8b6083d24e",
"b229b24850674e653494fd85",
"927db19161ad63ce6c0ac11b",
"a0424a32b4b006a33ae6640b",
"3cdbacb79bfa5401f10ac63c"
],
"read": [
"8259e926b4d4128e6ee664c5",
"ccd04b9b2297d699147ef1cf",
"6590f4e02c561e8732a2dc08"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "irure nostrud aliquip qui",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "bfb904c7cfb5aa2951792c46"
},
"lastModifiedBy": "exercitation in Duis ad magna",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "2953f56e13d0e98e4650105c"
},
{
"_id": "0a593cc6faa2ba59d299d545",
"name": "test",
"data": {
"gbac": {
"write": [
"e1d1857d5764d4e88aa12fbc",
"c87b9988ae9a47cef2edbd08"
],
"read": [
"1b2f6c7f285b200de070f445"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "laboris mollit esse",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "fc39c4f9f5578a7710267733"
},
"lastModifiedBy": "magna irure",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "416b4485347b0de3d43c598f"
},
{
"_id": "431aa3d5de88bd186683f473",
"name": "test",
"data": {
"gbac": {
"write": [
"57607d2f66614694ffe07a53",
"f8ab91952fc2e73a2faf31ee"
],
"read": [
"213001ca0d4e949573555167",
"c0e4bbf58db8f13f887afb80",
"1a32cf3e6fde15c395624abc",
"5ad38cba585c61e6e68a6145"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "id ex",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "99d5eed6f78bd71cb07b2790"
},
"lastModifiedBy": "cupidatat laboris veniam sunt Ut",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "e154a79ae29ea3984dc3217e"
}
],
"total": 15522171,
"skip": -97280659,
"limit": 40790323
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}