Rejection

  • A Rejection object details why a line was rejected by the seller, including a specific reason and optional explanatory text.

  • The reason field uses an enumerated type to specify predefined rejection causes such as inventory unavailability or a prohibited advertiser.

  • The displayText field allows for a freeform text explanation providing further context for the rejection.

The rejection details provided by the seller.

JSON representation
{
  "reason": enum (Reason),
  "displayText": string
}
Fields
reason

enum (Reason)

Rejection reason.

displayText

string

Freeform text to explain why the line was rejected.

Reason

Enum indicating a reason why line is rejected.

Enums
REASON_UNSPECIFIED The default value when the rejection reason has not been specified or is unknown in this version.
REASON_OTHER When the rejection reason does not fall into any of the categories. Using this state signals that the list of rejection reasons is incomplete and should be updated.
REASON_INVENTORY_UNAVAILABLE When the inventory is unavailable.
REASON_PROHIBITED_ADVERTISER When the line's advertiser is prohibited.