Initiates the execution of an existing report asynchronously. Users can get the report by polling this operation via OperationsService.GetOperation. Poll every 5 seconds initially, with an exponential backoff. Once a report is complete, the operation will contain a RunReportResponse in its response field containing a reportResult that can be passed to the FetchReportResultRows method to retrieve the report data.
HTTP request
POST https://admanager.googleapis.com/v1/{name}:run
Path parameters
Parameters
name
string
Required. The report to run. Format: networks/{networkCode}/reports/{reportId}
Request body
The request body must be empty.
Response body
If successful, the response body contains an instance of Operation.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-24 UTC."],[[["Starts a report's execution and allows retrieval through polling using `OperationsService.GetOperation` with exponential backoff."],["Report data is accessed by passing the `reportResult` from the completed operation's `RunReportResponse` to `FetchReportResultRows`."],["Requires the `https://www.googleapis.com/auth/admanager` OAuth scope for authorization."],["Utilizes an HTTP POST request to `https://admanager.googleapis.com/v1/{name}:run` with the report identifier in the path."],["The request body should be empty, and a successful response will contain an `Operation` object."]]],[]]