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": "5d2ad165e4f10362b67f92b6",
"name": "test",
"data": {
"gbac": {
"write": [
"c11a808583b127ae3d9130f1",
"8a61dc97e607f749288a4979"
],
"read": [
"65b252ae8af062d93f8aaff5",
"e202cefbe23bb5e911dac5cc",
"0861388f700936a175d6956d",
"ec89709e4c41321a7db8b2c8",
"eeeb2ee2832cd49e9e7aacaf"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ad",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "6833f6892615a5fce5f7fedc"
},
"lastModifiedBy": "cillum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "b6bbd23acdac7960b8b5efac"
},
{
"_id": "316068211face31635309408",
"name": "test",
"data": {
"gbac": {
"write": [
"08331b593aa19a822e443164",
"dc1f4038ecc2c43e6bdc9247",
"5d067d54a4d8eb7671aa7e29",
"89bb857d0c60006509c6ddb1"
],
"read": [
"07be743f929dc72adb15cc2a",
"166976906fed5b2304348435",
"e7a41fa42b06576fce54a6b0",
"8c5766eaca027e69c5352daa"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "tempor enim non minim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "8cf8ed47a0766f3719b710b9"
},
"lastModifiedBy": "eu in dolore aliquip",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": false,
"correspondingOMAutomationId": "2ac673516639f5ca438a602c"
},
{
"_id": "4579931a2dc7ab3089c7f1f0",
"name": "test",
"data": {
"gbac": {
"write": [
"de07bd3339a217ff86b78beb",
"03feeec09f0c98e45f4f9e0c"
],
"read": [
"c09d4382521053b0cdc4cc00"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "elit adipisicing ea nulla",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "c647525fd35c718a1e076cd4"
},
"lastModifiedBy": "voluptate eu laborum culpa in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks",
"migratedToOM": true,
"correspondingOMAutomationId": "5325337767ccc5b61b2b0c0e"
},
{
"_id": "1d71118fffb4d060384bc5de",
"name": "test",
"data": {
"gbac": {
"write": [
"1c2955581230878d6ee9a46a"
],
"read": [
"098562b339c0dbb167da15bb",
"19b3340565c00a4a00b331dd",
"1187e96b3005b368bbd7362c",
"4ff9b7b54ec3f5678cf12f5f",
"9c9e967487be93b85f56bd16"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ea dolore dolor",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "28cb9e65d03bd95ed6acb94c"
},
"lastModifiedBy": "velit cillum ipsum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "0940707ee22f46a8af750078"
}
],
"total": 86231425,
"skip": 85682930,
"limit": 10971226
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}