<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/Dismiss-target-CPA-recommendations",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "rest:apple-ads-platform-api:post:recommendations-target-cpas-dismiss"
  },
  "title" : "Dismiss Target CPA Recommendations"
}
-->

# Dismiss Target CPA Recommendations

Dismiss one or more target CPA recommendations without changing the campaign’s bid strategy.

## Discussion

Dismissing a target CPA recommendation just means you’ve reviewed it and decided not to apply it. The campaign’s target CPA stays unchanged, and the recommendation moves to `DISMISSED` state. The response is a history record that preserves the recommended value you passed on.

## Payload Examples

This example dismisses a target CPA recommendation. The campaign’s target CPA stays the same, and the response confirms the recommendation is now in `DISMISSED` state, along with the recommended value that was passed on.

**Dismiss Target CPA Recommendation:**

### Request

```json
POST /v1/recommendations/target-cpas/dismiss

[
 {
   "id": "rec-tcpa-001",
   "promotedObjectId": "123456",
   "promotedObjectType": "APPSTORE_APP"
 }
]
```

### Response

```json
{
 "result": [
   {
     "recommendationId": "rec-tcpa-001",
     "recommendationType": "TCPA",
     "promotedObjectId": "123456",
     "promotedObjectType": "APPSTORE_APP",
     "campaignId": 789012,
     "state": "DISMISSED",
     "appliedTime": "2026-02-23T14:30:00Z"
   }
 ],
 "pagination": {
   "totalCount": 1,
   "offset": 0,
   "pageSize": 20
 }
}
```

---

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)