Customer Portal
List customer subscriptions
Returns all subscriptions for the customer with plan details.
get/api/portal/customers/{externalId}/subscriptions
Path parameters
externalIdstring required
Customer external ID
Response
List of subscriptions with plan info
Example response
[
{
"id": "clx1234567890",
"externalId": "ext_sub_123",
"customerId": "clxcust123",
"planId": "clxplan123",
"status": "ACTIVE",
"currency": "USD",
"billingTiming": "IN_ARREARS",
"customer": {
"id": "clx1234567890",
"name": "Jane Doe",
"email": "jane@example.com"
},
"plan": {
"id": "clxplan123",
"name": "Premium Monthly",
"billingInterval": "MONTHLY"
}
}
]