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": "e6ee2610c231c71d96a36ab5",
"name": "test",
"data": {
"gbac": {
"write": [
"a6f80c1ce5218d31b66eb818",
"8bad35b36b6179a2924dce7e",
"c3246f54848d5e4155c034dc",
"fe059a33f5505dd0c841b402",
"0b225ec71b52e2021bef9598"
],
"read": [
"6be6c358d5a93d910a791b62",
"b5ff1401ca472332d6e40e33"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "dolore cupidatat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "980edb28e0f3ed7f780910c3"
},
"lastModifiedBy": "in officia Lorem voluptate",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "47c9ebcba1563a536ff76f93"
},
{
"_id": "bf63d0c48124316afad2f11a",
"name": "test",
"data": {
"gbac": {
"write": [
"c13254094b2933c77d6325a0",
"42d67c85fb667d69541a4f5d",
"fb821aeb221e0dc027a4283f",
"0f991fb9f03c2cc10d9817f8",
"f30ea405e97d4ea5dabbd663"
],
"read": [
"5d8707d1337699a1b77259b6",
"3dd2f3a413947f967f43291c",
"d9133d2b4428a9ae388dabd9",
"548e3cec77fa785e1a5fddf2"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "irure Excepteur nulla dolore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "60609addb9d632da51246d22"
},
"lastModifiedBy": "veniam",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "a72a26a1a0f58de19feca872"
},
{
"_id": "5b53fefeda7c5a011267a298",
"name": "test",
"data": {
"gbac": {
"write": [
"9275a85933d8160c8e584aa2",
"b7694b543cd0150b22ffa8c9",
"cb1ec0bb765ee7fe16105057"
],
"read": [
"37e9ccc8e624c4e411430e0e",
"a65d74cdb33e323234692629",
"a0fe41a47ab15c4ac3854248",
"f8f18b8d5cc6ae7257197e26"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "tempor nostrud in cupidatat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "5d9258a4454ec4e87061ed34"
},
"lastModifiedBy": "sed elit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "80efc54c8042b8762b222fda"
},
{
"_id": "7f9c7d9c9119038ada38da77",
"name": "test",
"data": {
"gbac": {
"write": [
"4561584bb544cd4657325f9a",
"5a191b047cad74ee49e916a4",
"1b6ba6dae6cbcb603afcc4fb",
"48215a22a2292187f48b9de5"
],
"read": [
"57eb4aa6e2c17bebcc8bd18c"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "elit laborum occaecat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "efc9663345a4932da65a3432"
},
"lastModifiedBy": "voluptate do nulla",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "db940da554a74242e1cc0835"
}
],
"total": 92196631,
"skip": 75854535,
"limit": -40247515
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}