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": "c7d886fdf84f227f89f67fff",
"name": "test",
"data": {
"gbac": {
"write": [
"f1b7d96401fb01cebc5beb34"
],
"read": [
"3265477a997b2c866a593d8d",
"5a832051923779f206abe42f",
"006392db33ca0d107623a092"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "irure non",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "8a09f72d6a87aa8d38b79fdf"
},
"lastModifiedBy": "nisi",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "208b72b28ce9a10db13b30a3"
},
{
"_id": "a4e8cb85c4343bc79ef64ea8",
"name": "test",
"data": {
"gbac": {
"write": [
"d7d06e8ed971b103b7c018a0",
"191448047d935a509fad4c15",
"eee8d0f87e8f7959d92af987"
],
"read": [
"bf43813f47d8d0b338c181ea",
"dc5d042269ba3bee6af288d0"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "exercitation veniam enim non nulla",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "c94165dfa67e3dfcdf2636a8"
},
"lastModifiedBy": "magna veniam amet elit qui",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "2e4a3288fb44b50a201d0734"
},
{
"_id": "4a52558cf303ccbf4ff12072",
"name": "test",
"data": {
"gbac": {
"write": [
"1a5c0fb787bfd0423acc3ca2"
],
"read": [
"ff531d3c7e9b170d7d7db02d"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "laboris",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "055bce1e9cc29ae1abb9dddc"
},
"lastModifiedBy": "aliqua",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": false,
"correspondingOMAutomationId": "340114b944901c3b0c8d48c9"
},
{
"_id": "d809505235d16a85172f8709",
"name": "test",
"data": {
"gbac": {
"write": [
"b881d0d623de24e0f1252016",
"4ec9953719732db7efa3dca9",
"5893324fa46819efb24f6210",
"01ef6a30def1a93e25c2afd3"
],
"read": [
"1096a4a89ed559a09b2612a2",
"c57c2fea5efd31143fe5791f",
"b15c0b538f7eadfbd00fc18f",
"7279a698b3bfbd9c9302bb3b"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "non cillum exercitation laborum laboris",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "16500bfe55a8072d97808122"
},
"lastModifiedBy": "Lorem ut cupidatat ullamco",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "17c3e7b9316ca0fb4ee5d1b1"
}
],
"total": 30292131,
"skip": 34317114,
"limit": -76430772
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}