Contents

CreativeRejectionReasonQueryResponse

The response object for a creative rejection reason query, containing matched results and pagination metadata.

Declaration

object CreativeRejectionReasonQueryResponse

Properties

NameTypeDescription
result[CreativeRejectionReason]

The matching rejection reason records. See CreativeRejectionReason. Read-only.

paginationQueryPaginationResult

Pagination metadata for the response, including offset, pageSize, and totalCount. See QueryPaginationResult. Read-only.

errorError

Error information if the request encountered an error. See Error. Read-only.

Discussion

The CreativeRejectionReasonQueryResponse object is returned by the creative rejection reason query endpoint.

To understand why an ad creative’s systemStatus is INVALID and which specific policy or format requirements it failed to meet, use this response.

Example

{
  "result": [
    {
      "id": 555666777,
      "adamId": 123456789,
      "creativeId": 666777888,
      "productPageId": "987654321",
      "assetId": null,
      "supplySource": "APPSTORE",
      "supplyPlacement": "APPSTORE_SEARCH_TAB",
      "countryOrRegion": "US",
      "languageCode": "en-US",
      "reasonType": "REJECTION_REASON",
      "reasonCode": "SCREENSHOT_NOT_REPRESENTATIVE",
      "comment": "Screenshot does not accurately represent the AwayFinder app experience.",
      "reasonLevel": "CUSTOM_PRODUCT_PAGE_LOCALE",
      "creationTime": "2025-01-10T08:00:00.000",
      "modificationTime": "2025-01-10T08:00:00.000"
    }
  ],
  "pagination": {
    "pageSize": 20,
    "offset": 0,
    "totalCount": 1
  }
}

See Also