ListCreativeStatusBreakdownByCreativeResponse

  • The response message provides a breakdown of filtered bids by creative, listing all creatives associated with a given filtered bid reason.

  • The filteredBidCreativeRows field contains a list of rows, each representing counts of bids aggregated by creative with a given creative status.

  • The nextPageToken field is used to retrieve subsequent pages of results.

  • The FilteredBidCreativeRow object includes the number of bids with a specific creative (bidCount), the creative ID (creativeId), and the dimension values associated with the metrics (rowDimensions).

Response message for listing all creatives associated with a given filtered bid reason.

JSON representation
{
  "filteredBidCreativeRows": [
    {
      object (FilteredBidCreativeRow)
    }
  ],
  "nextPageToken": string
}
Fields
filteredBidCreativeRows[]

object (FilteredBidCreativeRow)

List of rows, with counts of bids with a given creative status aggregated by creative.

nextPageToken

string

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

FilteredBidCreativeRow

The number of filtered bids with the specified dimension values that have the specified creative.

JSON representation
{
  "bidCount": {
    object (MetricValue)
  },
  "creativeId": string,
  "rowDimensions": {
    object (RowDimensions)
  }
}
Fields
bidCount

object (MetricValue)

The number of bids with the specified creative.

creativeId

string

The ID of the creative.

rowDimensions

object (RowDimensions)

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