Plans
Get plan by ID
Retrieve a plan with all its prices and features.
get/api/plans/{id}
Path parameters
idstring required
Plan ID
Response
Plan details with prices
Example response
{
"id": "clx1234567890",
"name": "Premium Monthly",
"code": "premium_monthly",
"description": "Premium plan with all features",
"billingInterval": "MONTHLY",
"features": [
"Unlimited users",
"Priority support"
],
"isActive": true,
"billingTiming": "IN_ARREARS",
"minimumCommitment": "100.0000",
"prices": [
{
"id": "clx1234567890",
"planId": "clxplan123",
"currency": "USD",
"amount": "49.9900",
"isActive": true
}
]
}