Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns a list of all configured payment gateway instances for the organisation. Each gateway includes basic configuration, usage statistics, and last activity date. Sensitive credentials (API keys, secrets) are NOT included - use the /keys endpoint for those.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredList of configured payment gateways.
Payment gateway instance configuration and statistics.
codestringRequiredUnique identifier/slug for this gateway instance.
descriptionstringRequiredHuman-readable description of the gateway configuration.
environment"p" | "s" | "t"RequiredEnvironment: "p" = Production, "s" = Sandbox, "t" = Test.
activebooleanRequiredWhether the gateway is currently active and can process payments.
insertedDateDate | string | string | numberRequiredDate when the gateway was configured.
Date when the gateway was configured.
gatewayCodestringRequiredProvider code (e.g., "gopay", "comgate", "stripe").
gatewayNamestringRequiredHuman-readable provider name.
paymentCountnumberRequiredTotal number of payments processed through this gateway.
lastUsedDateDate | string | string | numberOptionalDate of the most recent payment attempt.
Date of the most recent payment attempt.
issuerExternalIdstringRequiredExternal id (shop__contact.external_id) of the invoice issuer bound to this gateway.
issuerNamestringRequiredDisplay name of the invoice issuer — first + last name, falls back to company_name, falls back to the external id.
itemCountnumberRequiredTotal number of gateway instances.
{
"items": [
{
"code": "example_code",
"description": "example_description",
"active": false,
"gatewayCode": "example_gatewayCode",
"gatewayName": "example_gatewayName",
"paymentCount": 0,
"issuerExternalId": "example_issuerExternalId",
"issuerName": "example_issuerName"
}
],
"itemCount": 0
}GET /bff/payment-gateway/list
curl -X GET "https://api.bizkithub.com/bff/payment-gateway/list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.