Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns active, non-deleted credit reasons with default amounts so the admin UI can pre-fill the credit form when a reason is selected.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredexternalIdstringRequiredReason external ID (16 chars).
codestringRequiredReason code.
namestringRequiredDisplay name.
descriptionstringOptionalInternal note shown in admin to clarify when this reason should be used.
defaultAmountnumberRequiredPreset credit amount.
defaultAmountMoneynumberOptionalPreset monetary value in the organisation default currency. Omitted when not configured — clients should fall back to defaultAmount (1:1).
{
"items": [
{
"externalId": "example_externalId",
"code": "example_code",
"name": "example_name",
"description": "example_description",
"defaultAmount": 0,
"defaultAmountMoney": 0
}
]
}GET /bff/contact-credit/reason/list-selectbox
curl -X GET "https://api.bizkithub.com/bff/contact-credit/reason/list-selectbox" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.