Summary
Run an Analytics Template
Description
Run an Analytic Template.
Route
POST /mop/runAnalyticsTemplate
Roles
admin
engineering
support
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
pre |
object |
yes |
Pre command to run with the Analytic Template. |
post |
object |
yes |
Post command to run with the Analytic Template. |
analytic_template_name |
string |
yes |
Name of the Analytic Template to run. |
variables |
object |
yes |
Variables to run with the Analytic Template. |
Copied to Clipboard
{
"pre": null,
"post": null,
"analytic_template_name": "Duis proident veniam",
"variables": null
}
Copied to Clipboard
{
"type": "object",
"properties": {
"pre": {
"description": "Pre command to run with the Analytic Template.",
"type": "object",
"properties": {},
"required": [
"pre"
],
"additionalProperties": false
},
"post": {
"description": "Post command to run with the Analytic Template.",
"type": "object",
"properties": {},
"required": [
"post"
],
"additionalProperties": false
},
"analytic_template_name": {
"description": "Name of the Analytic Template to run.",
"type": "string"
},
"variables": {
"description": "Variables to run with the Analytic Template.",
"type": "object",
"properties": {},
"required": [
"variables"
],
"additionalProperties": false
}
},
"required": [
"pre",
"post",
"analytic_template_name",
"variables"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
analytic_template_results |
object |
Result of running Analytic Template |
Copied to Clipboard
{
"analytic_template_results": true
}
Copied to Clipboard
{
"description": "Result of running Analytic Template",
"type": "object",
"properties": {
"analytic_template_results": true
},
"required": [
"analytic_template_results"
],
"additionalProperties": false
}