<!--
{
  "availability" : [
    "Search Ads: 5.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple_Ads",
  "identifier" : "/documentation/apple_ads/Find-Ad-Creative-Rejection-Reasons",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads"
    ],
    "preciseIdentifier" : "rest:apple_ads:post:v5-product-page-reasons-find"
  },
  "title" : "Find Ad Creative Rejection Reasons"
}
-->

# Find Ad Creative Rejection Reasons

Fetches ad creative rejection reasons.

## Discussion

Use this endpoint to find rejected approval reasons for ad creatives based on default or custom product page. See the [`ProductPageReason`](/documentation/apple_ads/ProductPageReason) object for rejection reason code enumerations, parameter descriptions, and [`Selector`](/documentation/apple_ads/Selector) condition operators.

### Payload example 1: Find ad creative rejection reasons

**Request:**

```
POST https://api.searchads.apple.com/api/v5/product-page-reasons/find

{
  "conditions": [
    {
      "field": "supplySources",
      "operator": "equals",
      "values": [
        "APPSTORE_TODAY_TAB"
      ]
    },
    {
      "field": "countriesOrRegions",
      "operator": "IN",
      "values": [
        "US"
      ]
    },
    {
      "field": "productPageId",
      "operator": "IN",
      "values": [
        "59f4948c-3726-4cfc-8915-6b09afb36d83",
        "0349277e-32f8-436b-980a-258c3aabf0ad"
      ]
    },
    {
      "orderBy": [
        {
          "field": "productPageId",
          "sortOrder": "ASCENDING"
        }
      ]
    }
  ]
}
```

**Response:**

```json
{
  "data": [
    {
      "id": 4567890421,
      "adamId": 144714574,
      "productPageId": "59f4948c-3726-4cfc-8915-6b09afb36d83",
      "assetGenId": "368234568;en-US;9;0;4201c5a4bd4087cc82xdfetdc8141b94d0",
      "supplySource": "APPSTORE_TODAY_TAB",
      "countryOrRegion": "US",
      "languageCode": "en-US",
      "reasonType": "REJECTION_REASON",
      "reasonCode": "SUBTITLE_LANGUAGE_CONFLICT",
      "reasonLevel": "CUSTOM_PRODUCT_PAGE_LOCALE",
      "comment": "Custom comment for rejection."
    },
    {
      "id": 4837240452,
      "adamId": 144714574,
      "productPageId": "0349277e-32f8-436b-980a-258c3aabf0ad",
      "assetGenId": "835599320;en-AU;9;0;dbac55b222a61e1939f19f2640e48dfa",
      "supplySource": "APPSTORE_TODAY_TAB",
      "countryOrRegion": "US",
      "languageCode": "en-US",
      "reasonType": "APP_NAME_LANGUAGE_CONFLICT",
      "reasonCode": "CUSTOM_PRODUCT_PAGE_LOCALE",
      "comment": "Custom comment for rejection."
    }
  ],
  "pagination": {
    "totalResults": 2,
    "startIndex": 0,
    "itemsPerPage": 10
  }
}
```

### Payload example 2: Find ad creative rejection reasons

**Request:**

```
HTTP POST https://api.searchads.apple.com/api/v5/product-page-reasons/find

{
  "conditions": [
    {
      "field": "adamId",
      "operator": "equals",
      "values": [
        "735599345"
      ]
    },

      "orderBy": [
        {
          "field": "productPageId",
          "sortOrder": "ASCENDING"
        }
      ]
    }
  ]
}
```

**Response:**

```json
{
  "data": {
    "id": "135366",
    "adamId": 735599345,
    "productPageId": "68e5948c-3726-4cfc-8915-6b09afb36d83",
    "assetGenId": "735599345;en-US;9;0;4201c5a4bd4087cc82xdfetdc8141b94d0",
    "supplySource": "APPSTORE_TODAY_TAB",
    "countryOrRegion": "US",
    "languageCode": "en-US",
    "reasonType": "REJECTION_REASON",
    "reasonCode": "APP_NAME_LANGUAGE_CONFLICT",
    "reasonLevel": "CUSTOM_PRODUCT_PAGE_LOCALE",
    "comment”: "Custom comment for rejection."
  }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)