Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.03 KB

change-billing-anchor-date-request.md

File metadata and controls

26 lines (17 loc) · 1.03 KB

Change Billing Anchor Date Request

Defines input parameters in a request to the ChangeBillingAnchorDate endpoint.

Structure

ChangeBillingAnchorDateRequest

Fields

Name Type Tags Description Getter Setter
monthlyBillingAnchorDate ?int Optional The anchor day for the billing cycle.
Constraints: >= 1, <= 31
getMonthlyBillingAnchorDate(): ?int setMonthlyBillingAnchorDate(?int monthlyBillingAnchorDate): void
effectiveDate ?string Optional The YYYY-MM-DD-formatted date when the scheduled BILLING_ANCHOR_CHANGE action takes
place on the subscription.

When this date is unspecified or falls within the current billing cycle, the billing anchor date
is changed immediately.
getEffectiveDate(): ?string setEffectiveDate(?string effectiveDate): void

Example (as JSON)

{
  "monthly_billing_anchor_date": 1,
  "effective_date": "effective_date8"
}