Contents

ApplyTargetCpaRecommendation

Request object for applying or dismissing a target CPA recommendation.

Declaration

object ApplyTargetCpaRecommendation

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.

appliedTargetCPARecommendationMoney

The target CPA value to apply. Overrides recommendedTargetCPA if provided. Ignored on dismiss. See Money.

historyIdstring

Optional reference to a prior history record.

Discussion

The ApplyTargetCpaRecommendation object is the request body for applying or dismissing a target CPA recommendation.

Example

{
  "id": "rec-tcpa-001",
  "promotedObjectId": "123456",
  "promotedObjectType": "APPSTORE_APP",
  "appliedTargetCPA": {
    "amount": "5.00",
    "currency": "USD"
  },
  "historyId": "hist-tcpa-001"
}

See Also