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": "1467679ec60eea6e3c21a595",
"name": "test",
"data": {
"gbac": {
"write": [
"1e57b9b1a7e4a5c6f2205677",
"919bd42156121788f72be8e4"
],
"read": [
"b7a32beab6b6adb898a59f77",
"c77823dcbade26230d2e19d4",
"c9b175dee42aee561b442dae",
"95704ada9ffaaea56aa089a7",
"eda91e44e14e84cd125e1d6a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "pariatur laborum voluptate",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "06a966c7e0c89b1461fd3824"
},
"lastModifiedBy": "nulla labore aliquip eu nostrud",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 day",
"migratedToOM": false,
"correspondingOMAutomationId": "4b4603fd0f558dcb877d4153"
},
{
"_id": "8c6e0c63104a3f05eb946709",
"name": "test",
"data": {
"gbac": {
"write": [
"a82593ead40f04c908407c18",
"0394184677a251b2de010c30",
"4bad73d00f1fb8e1f63d0338"
],
"read": [
"4f7578276361664d51f9f363",
"497fa416d538771e54bbc2cc",
"1ab4e0e80a3e72fb69143b52",
"11eb92e81f85508d5ee993b1"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "ullamco ipsum dolore",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "deb7c43f89311b1122f2ad82"
},
"lastModifiedBy": "nostrud Excepteur qui est laborum",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "1 hour",
"migratedToOM": true,
"correspondingOMAutomationId": "b208d1187728cedc2260e0ba"
},
{
"_id": "a2634c5af81cccf34f169cde",
"name": "test",
"data": {
"gbac": {
"write": [
"2353dc45c38650300e43af61",
"c1bb0d028a4a4648322f2e31"
],
"read": [
"e9526c0e0856f337c96bdf04",
"3b80ada4befa6d1d380e53a4",
"d91b9b5437103649ff0efe1e",
"32f144e7db0417abc36f59db",
"9fe4486372b1a45587e90668"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "voluptate minim",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "762a3e364b7ed5356b3677bc"
},
"lastModifiedBy": "ea ad cupidatat",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": true,
"correspondingOMAutomationId": "2b6753275eb783f9ec31b528"
},
{
"_id": "810ec519059143df8e6209a2",
"name": "test",
"data": {
"gbac": {
"write": [
"f45792dc864b2ea9525b1828",
"2243acb5c886456e6e76af31",
"04a0a7bcc37d120423dfadfe",
"c98095acdc8731a201f9a03d",
"24e7c375b7692766ba91d242"
],
"read": [
"8904a4a6551422f380147b17",
"3f71ae24680b0cdaa4f6393a"
]
},
"lastUpdated": "2019-11-25T22:51:39.201Z",
"description": "pariatur consequat sit",
"workflowId": "8e3695fe-c5bf-4286-ae83-186b3fea1c1a",
"formId": "6d68f5617a5fbb4d544b87c5"
},
"lastModifiedBy": "minim culpa qui",
"lastRunAt": "2019-11-25T22:51:39.201Z",
"nextRunAt": "2019-11-25T22:51:39.201Z",
"repeatInterval": "2 months",
"migratedToOM": false,
"correspondingOMAutomationId": "260bba33f8b2345f6ee7ecd9"
}
],
"total": -65630898,
"skip": 55841186,
"limit": 4267195
}
Copied to Clipboard
{
"title": "result",
"type": "object",
"properties": {
"list": {
"type": "array",
"items": {
"$ref": "automationDocument"
}
},
"total": {
"type": "integer"
},
"skip": {
"type": "integer"
},
"limit": {
"type": "integer"
}
}
}