Contents

ApplyDailyCapRecommendation

Request object for applying or dismissing a daily budget recommendation.

Declaration

object ApplyDailyCapRecommendation

Properties

NameTypeDescription
id Requiredstring

The unique identifier of the recommendation to act on.

promotedObjectId Requiredstring

The ID of the promoted object. For APPSTORE_APP, this is the app Adam ID. For BUSINESS_BRAND, this is the brand ID.

promotedObjectType Requiredstring

The type of the promoted object.

appliedDailyBudgetRecommendationMoney

The daily budget amount to apply. Overrides suggestedDailyBudgetAmount if provided. Ignored on dismiss. See Money.

historyIdstring

Optional reference to a prior history record.

Discussion

The ApplyDailyCapRecommendation object is the request body for applying or dismissing a daily budget recommendation.

Example

{
  "id": "rec-budget-001",
  "promotedObjectId": "123456",
  "promotedObjectType": "APPSTORE_APP",
  "appliedDailyBudget": {
    "amount": "500.00",
    "currency": "USD"
  },
  "historyId": "hist-789012"
}

See Also