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": "7138c05c7f552f23f6f94898",
"name": "test",
"data": {
"gbac": {
"write": [
"dd203fb73bf00815c911c379",
"01947b9074f024406defd6bf"
],
"read": [
"9d13c01dfb5991e66d5ae480",
"5c9ea0dbc52f32a53b659bab",
"1a5aa367a3b670f845a3af2c"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "anim in elit est",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "afedb0a2c2f9ef22480892b4"
},
"lastModifiedBy": "magna dolor ea nostrud",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
},
{
"_id": "91d538f538f7eb984d551537",
"name": "test",
"data": {
"gbac": {
"write": [
"17991aeee99835e50bfc7e27",
"36c8ad61e89cef949a444ffc",
"64a3e20f2ae6e37cd12968ec",
"42757e96281f93ac66514e89"
],
"read": [
"5349e72a7807df3c7d2d5a03"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "pariatur",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "242646f0f0adeb4a3ee17d6a"
},
"lastModifiedBy": "minim ullamco ad",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "df1229ad6b104fa82f825405",
"name": "test",
"data": {
"gbac": {
"write": [
"5c762ae12823e4eedbc6dce0",
"1ff29d662bd1d9ec65b0ecbb",
"7c5d905450e77db40d8647e9"
],
"read": [
"65f7993446aa218cc04fdf24",
"e753c3cb6d93d538b3e9ed39"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "elit do exercitation",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "5a1c8ee660e6925a53258d8e"
},
"lastModifiedBy": "anim deserunt ullamco ut aliqua",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "3 weeks"
}
],
"total": 27862938,
"skip": -28408137,
"limit": 47237110
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}