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": "639579591394d962be390677",
"name": "test",
"data": {
"gbac": {
"write": [
"4eb070ed34d0ff6c96f49b30",
"db021ed3abd4762c48fc5f0a",
"5cb9ff6261a1e51465958871",
"746a4f2c6929c7dad94a9210"
],
"read": [
"fed8f7e335ea20968869d3ed",
"de97c1f6deb7c8486ad61fa5",
"c2bddf16d45ce39d1830cefb",
"d8f0def5c705c4e9c7b8a48c"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "eiusmod et nisi dolor fugiat",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "beda29a574cbba4c4c5ffec7"
},
"lastModifiedBy": "sint",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "cd7a57dc2567d000779c5d2f"
},
{
"_id": "ec050ac0e054d5a64d1e74ee",
"name": "test",
"data": {
"gbac": {
"write": [
"4df14de5c7185d967f9cd06f",
"15d7aae941d6d8802b01b633"
],
"read": [
"6a530bfe4743df30d0afbbb3",
"9b89961690eab83f4284e3a3",
"3a58b5b35f37358d0b9ac458",
"6e8c967ee48b90a275f292ff",
"e1d05f36d20529bb2b66d531"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "laborum sunt ipsum",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "2471f3c375049023ce9f9169"
},
"lastModifiedBy": "veniam Lorem do",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "3f4b2ff26e5af5bf26b3f790"
},
{
"_id": "69d272fce2e28f38a42f1b35",
"name": "test",
"data": {
"gbac": {
"write": [
"a88060a16974b1ef8722207f",
"d0a4f1327b11a0f265f72284"
],
"read": [
"5dfd16fa14dbcaf37c4f3b6f",
"d9de5bf651aadaa2bd2213c7",
"d699c8aefa8d210999c0ae23",
"121bcf76d46029fb487ef320"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "voluptate culpa amet commodo",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "756fb786c1f5d2c579a2c07d"
},
"lastModifiedBy": "proident",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": true,
"correspondingOMAutomationId": "80f433b3a37f364faf3be3d0"
},
{
"_id": "db76d3d9924befeccc0b5dc5",
"name": "test",
"data": {
"gbac": {
"write": [
"bc2946f4906bff835ca914c0"
],
"read": [
"66308ae63229b07b7eca2d09"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "reprehenderit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "b527242ab8831d734e067600"
},
"lastModifiedBy": "sit aute dolor qui mollit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "bec1cceef7e56d9b2f649d9d"
}
],
"total": -14476964,
"skip": 68947312,
"limit": -3613062
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}