Plan Overrides
Create a plan override
Create a customer-specific override for a plan (custom pricing, minimum commitment, or charge properties)
post/api/plan-overrides
Request body
Example request
{
"customerId": "clx_customer_123",
"planId": "clx_plan_456",
"overriddenPrices": [
{
"currency": "USD",
"amount": 49.99
}
],
"overriddenMinimumCommitment": 500,
"overriddenCharges": [
{
"chargeId": "clx_charge_789",
"properties": {
"amount": 0.05
}
}
]
}Response
Plan override created
Example response
{
"id": "clx1234567890",
"customerId": "clx_customer_123",
"planId": "clx_plan_456",
"overriddenMinimumCommitment": 500
}