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

# Apply Daily Budget Recommendations

Apply one or more daily budget recommendations, updating the campaign’s daily budget to the suggested amount.

## Discussion

Applying a daily budget recommendation updates the campaign’s `dailyBudget` to the recommendation’s `suggestedDailyBudgetAmount`, and moves the recommendation to `APPLIED` state. You can override the suggested amount by passing `appliedDailyBudget` in the request. The response is a history record with both the suggested and applied amounts, plus the performance context behind the recommendation.

## Payload Examples

This example applies a daily budget recommendation, raising the campaign’s daily budget to the suggested $500.00. The response confirms the recommendation is now `APPLIED`.

**Apply Daily Budget Recommendation:**

### Request

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

[
 {
   "id": "rec-budget-001",
   "appliedDailyBudget": {
     "amount": "500.00",
     "currency": "USD"
   },
   "promotedObjectId": "123456",
   "promotedObjectType": "APPSTORE_APP"
 }
]
```

### Response

```json
{
 "result": [
   {
     "recommendationId": "rec-budget-001",
     "recommendationType": "DAILYCAP",
     "promotedObjectId": "123456",
     "promotedObjectType": "APPSTORE_APP",
     "campaignId": 789012,
     "state": "APPLIED",
     "appliedDailyBudgetAmount": {
       "amount": "500.00",
       "currency": "USD"
     },
     "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)