ListImpressionMetricsResponse

  • The ListImpressionMetricsResponse message is used to list metrics measured in the number of impressions.

  • Each ImpressionMetricsRow contains a set of impression metrics, such as available impressions, inventory matches, bid requests, successful responses, and responses with bids.

  • The response includes a nextPageToken for retrieving subsequent pages of results.

Response message for listing the metrics that are measured in number of impressions.

JSON representation
{
  "impressionMetricsRows": [
    {
      object (ImpressionMetricsRow)
    }
  ],
  "nextPageToken": string
}
Fields
impressionMetricsRows[]

object (ImpressionMetricsRow)

List of rows, each containing a set of impression metrics.

nextPageToken

string

A token to retrieve the next page of results. Pass this value in the ListImpressionMetricsRequest.pageToken field in the subsequent call to the impressionMetrics.list method to retrieve the next page of results.

ImpressionMetricsRow

The set of metrics that are measured in numbers of impressions, representing how many impressions with the specified dimension values were considered eligible at each stage of the bidding funnel.

JSON representation
{
  "availableImpressions": {
    object (MetricValue)
  },
  "inventoryMatches": {
    object (MetricValue)
  },
  "bidRequests": {
    object (MetricValue)
  },
  "successfulResponses": {
    object (MetricValue)
  },
  "responsesWithBids": {
    object (MetricValue)
  },
  "rowDimensions": {
    object (RowDimensions)
  }
}
Fields
availableImpressions

object (MetricValue)

The number of impressions available to the buyer on Ad Exchange. In some cases this value may be unavailable.

inventoryMatches

object (MetricValue)

The number of impressions that match the buyer's inventory pretargeting.

bidRequests

object (MetricValue)

The number of impressions for which Ad Exchange sent the buyer a bid request.

successfulResponses

object (MetricValue)

The number of impressions for which the buyer successfully sent a response to Ad Exchange.

responsesWithBids

object (MetricValue)

The number of impressions for which Ad Exchange received a response from the buyer that contained at least one applicable bid.

rowDimensions

object (RowDimensions)

The values of all dimensions associated with metric values in this row.