Parameters
1 query
Query parameters
· 1customerIdstringRequiredContact external ID.
abc123def456ghijReturns 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.
1 query
customerIdstringRequiredContact external ID.
abc123def456ghij1 status code documented
itemsobject[]RequiredexternalIdstringRequiredSubscription external ID.
productSlugstringRequiredProduct slug.
productCodestringRequiredProduct code.
orderNumberstringRequiredOrder number that initiated this subscription.
orderHashstringRequiredOrder hash for admin linking.
autoRenewbooleanRequiredWhether the subscription auto-renews on renewalDate.
renewalDateDate | string | string | numberRequiredNext renewal charge attempt.
Next renewal charge attempt.
activeToDateDate | string | string | numberOptionalAccess is granted until this date.
Access is granted until this date.
lastSuccessPaymentDateDate | string | string | numberOptionalTimestamp of the last successful renewal charge.
Timestamp of the last successful renewal charge.
itemCountnumberRequiredTotal number of active subscriptions.
{
"items": [
{
"externalId": "example_externalId",
"productSlug": "example_productSlug",
"productCode": "example_productCode",
"orderNumber": "example_orderNumber",
"orderHash": "example_orderHash",
"autoRenew": false
}
],
"itemCount": 0
}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"All BizKitHub public API endpoints require authentication via API key.