Plans
Add a price to a plan
Add a price in a specific currency to a plan. Each plan can have one price per currency.
post/api/plans/{id}/prices
Path parameters
idstring required
Plan ID
Request body
Example request
{
"currency": "NGN",
"amount": 9999.99
}Response
Price added to plan
Example response
{
"id": "clx1234567890",
"planId": "clxplan123",
"currency": "USD",
"amount": "49.9900",
"isActive": true
}