runPivotReport method
- RunPivotReportRequest request,
- String property, {
- String? $fields,
Returns a customized pivot report of your Google Analytics event data.
Pivot reports are more advanced and expressive formats than regular reports. In a pivot report, dimensions are only visible if they are included in a pivot. Multiple pivots can be specified to further dissect your data.
request
- The metadata request object.
Request parameters:
property
- A Google Analytics GA4 property identifier whose events are
tracked. Specified in the URL path and not the body. To learn more, see
where to find your Property ID.
Within a batch request, this property should either be unspecified or
consistent with the batch-level property. Example: properties/1234
Value must have pattern ^properties/\[^/\]+$
.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a RunPivotReportResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<RunPivotReportResponse> runPivotReport(
RunPivotReportRequest request,
core.String property, {
core.String? $fields,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ =
'v1beta/' + core.Uri.encodeFull('$property') + ':runPivotReport';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return RunPivotReportResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}