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": "392c4455175359d1f9cf8a25",
"name": "test",
"data": {
"gbac": {
"write": [
"d4e82a40e86b4fe2c9a18c8f",
"ace55665aab94f46c5ad3215",
"5d105056474635e4be07b49c",
"b8e52d6dbccdffc696e8d917"
],
"read": [
"c8ee4c8475808457765506ed",
"96171db8785a8664600b43d0",
"155928469f8b2028d7d4848b"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "et non",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "8d37634cf382a8a430649662"
},
"lastModifiedBy": "exercitation Lorem cillum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "483b3a922d7ba8aab52393d1",
"name": "test",
"data": {
"gbac": {
"write": [
"f621585ce99cf949e6944064"
],
"read": [
"a73ed32aec5aa2955319f6f5",
"f97b6b156207a94da590a14e",
"e18f97ab33ece193d4e51b05"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "anim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "24ed2bb8ad55c69c32cfac2a"
},
"lastModifiedBy": "qui consequat pariatur id sit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "7d4a6f0695ce70ffdcf1d682",
"name": "test",
"data": {
"gbac": {
"write": [
"67519970deef52f9cacafbad"
],
"read": [
"6380b7e2cc754ed490dae750",
"933ad4b7aa613a801b329093",
"f063281d6d74953acc2d2c17",
"ea60050b190c792379db9e46",
"81d37bcd03be2a1f83d897de"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "laboris tempor in",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "3f3fe056ec53e7da20ff75dd"
},
"lastModifiedBy": "ea do incididunt",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "d3e8c2d0a9e254815bd40f99",
"name": "test",
"data": {
"gbac": {
"write": [
"d38d0b613c330d746aff6587"
],
"read": [
"6eb12e7ed0284e794791b6d4",
"88a49dae54dc3b77b906c511",
"6f26974c50773230ae165216"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sint voluptate sunt",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "e8113351590618a7abd3ab14"
},
"lastModifiedBy": "in voluptate nisi dolore",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
},
{
"_id": "6f33b99bbcea617cf289ca9f",
"name": "test",
"data": {
"gbac": {
"write": [
"75e59fa6bcf21f967dd72eb3",
"2c158a006243ed2d42be52e1",
"e2166eb3ca198554e79d95df",
"c1be9c8b2c0cb06768d39e63"
],
"read": [
"b7ce3f83aa4354d5399eb479",
"151ad4de35ba55e7d0d94fd7"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "sint est dolor",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "a7c97b26e79a28de728d41e2"
},
"lastModifiedBy": "ea",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
}
],
"total": -77565245,
"skip": 63352008,
"limit": -3337858
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}