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": "51f735dbb3cde61708e33812",
"name": "test",
"data": {
"gbac": {
"write": [
"7412f3a48795231a7c35bcd5",
"6c49625d55e5b228b35e4d97",
"da8fd0d3cac78d9c62eb8187",
"b2193deb287bd41b0f331521"
],
"read": [
"8736f45223c3afd350fbd603",
"e7d6d571c780e42200e0290b"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "in minim ut ullamco qui",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "13e46cf7e81eaa435509b7ee"
},
"lastModifiedBy": "aliquip",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "8796c4a367ee10693acdb7e0",
"name": "test",
"data": {
"gbac": {
"write": [
"0d645ff79af64213a2acb1a9",
"aa7970207cb3d0b5be5f3629",
"8bcbf33caed9303721295b89",
"33303276b59db120e270a49e"
],
"read": [
"1a1af29dc81f93f86f140d16",
"4613b50fea4bf528306c3544",
"31a2bce2cf6ed1eb89ab3cc4",
"527b337c2bf07ec7e3f5d722",
"e9b72b97e5608df5c1bd3709"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "deserunt laboris",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "d28cf589f6edfe705b46e4d2"
},
"lastModifiedBy": "ut adipisicing",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day"
},
{
"_id": "ae76d6401b6844ebce1b9a52",
"name": "test",
"data": {
"gbac": {
"write": [
"b42b3215a218fa16b0787ae7",
"9a7152fbc8519910b070956e",
"56df82f3a0964d37d9edec40",
"04dbd77510a4a3ceb17b04e9",
"b332eb3c4c7c7f126af09db8"
],
"read": [
"93ebd991e80ec87b0014bbe4",
"103d983c7d58241413e1dcb3",
"c6e38d2601455479d7e6109e",
"65c983f33b94fa9fb5a994e4",
"a36b3e0567ce84412328b7f0"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "pariatur mollit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "5434cf2362aa9d2e0caf65b4"
},
"lastModifiedBy": "sit",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour"
},
{
"_id": "f68764500f0f7584c0f44da9",
"name": "test",
"data": {
"gbac": {
"write": [
"6b4284948cd78848e4537f8c"
],
"read": [
"29f4fa3ec9d0cb0a7580794e",
"d7292581757a7fe7971d8109",
"9ea665af07e7ad5ae138371f",
"e34ccf759b10f619d63aafbd",
"1c528e2cd41a039432a135ee"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ad Lorem",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "85854dbc733eadd7dc803e93"
},
"lastModifiedBy": "in mollit labore enim in",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months"
}
],
"total": -77521308,
"skip": 85290129,
"limit": -88078292
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}