/bff/subscription/list
Returns every subscription of the contact whose activeToDate is in the future. Same primitive that powers /api/v1/subscription/active-list, scoped to the authenticated organisation. itemCount mirrors items.length so the response plugs straight into DataGrid without a separate count query.
SubscriptiongetBffSubscriptionList
Parameters
1 query
Query · 1
customerIdstringRequiredContact external ID.
Request
GET /bff/subscription/list
curl -X GET "https://api.bizkithub.com/bff/subscription/list?customerId=abc123def456ghij" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
JSON payload
{
"items": [
{
"externalId": "example_externalId",
"productSlug": "example_productSlug",
"productCode": "example_productCode",
"orderNumber": "example_orderNumber",
"orderHash": "example_orderHash",
"autoRenew": false
}
],
"itemCount": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.