Contents

DailyBudgetCreate

Request wrapper for setting a campaign’s daily budget at creation time.

Declaration

object DailyBudgetCreate

Properties

NameTypeDescription
valueMoney

The daily budget amount as a Money object with amount (decimal string) and ISO 4217 currency code. See Money.

Discussion

The DailyBudgetCreate object is the create-time counterpart to DailyBudget. It wraps a single value field containing the desired daily spend cap as a Money object. The dailyBudget field is required for all campaigns. The sharedBudgets field may also be provided to assign the campaign to one or more budget orders.

Example

{
  "value": {
    "amount": "100.00",
    "currency": "USD"
  }
}

See Also