<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/Dismiss-daily-budget-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-daily-budgets-dismiss"
  },
  "title" : "Dismiss Daily Budget Recommendations"
}
-->

# Dismiss Daily Budget Recommendations

Dismiss one or more daily budget recommendations without changing the campaign’s budget.

## Discussion

Dismissing a daily budget recommendation just means you’ve decided not to raise the budget. The campaign’s daily budget stays unchanged, and the recommendation moves to `DISMISSED` state. The response is a history record that preserves the recommendation’s state at the time you dismissed it.

## Payload Examples

This example dismisses a daily budget recommendation. The campaign’s daily budget stays unchanged, and the response confirms the recommendation is now in `DISMISSED` state.

**Dismiss Daily Budget Recommendation:**

### Request

```json
POST /v1/recommendations/daily-budgets/dismiss

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

### Response

```json
{
 "result": [
   {
     "recommendationId": "rec-budget-001",
     "recommendationType": "DAILYCAP",
     "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)