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": "6481426707ec9457029df689",
"name": "test",
"data": {
"gbac": {
"write": [
"c4906363e7ba5e7d16e3c8fb",
"e038afda7f2991ea341bddce",
"e40887292cadef17e1b59020",
"bd5551065025927e123b59f8"
],
"read": [
"53e8e8fbc46ba9b18a67b857",
"a2f8809c7fb65bb97ed92438",
"2ce59c6219126a107b24f9dd",
"741d5dbfafad9facb00f0ce7",
"176422334d671776bbb99710"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "nulla cillum ea dolore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "fe64be460aa554a1c48a090a"
},
"lastModifiedBy": "Excepteur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "8403d2a0c53005bff77ec71d"
},
{
"_id": "ffc744090a743c1f05bfe695",
"name": "test",
"data": {
"gbac": {
"write": [
"8b9e9a0689eb7490532ece17"
],
"read": [
"aded571da94cf4703fedf651"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "anim proident",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "3f13666014e24b93a647da4a"
},
"lastModifiedBy": "sint voluptate",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "640a7e00d7503de2ba9dcde4"
},
{
"_id": "c7d2a06a2beca4f128074ab0",
"name": "test",
"data": {
"gbac": {
"write": [
"75419eb6cdcbfa20681f1a34"
],
"read": [
"bbd1c47f6017af631dbd4566",
"100cdc939a764168eaff7e8d",
"62aa1aeec366a6495c54ec0e",
"1d21281d87e81ebbb5cbc04a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolor occaecat adipisicing officia consequat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "50cd3e869976e0120d197288"
},
"lastModifiedBy": "eiusmod consectetur",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "27c7358d2f3f5e3d5cea6f75"
}
],
"total": 37826139,
"skip": -84437713,
"limit": 85089838
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}