Parameters
1 query
Query parameters
· 1codestringRequiredUnique code/slug of the gateway instance.
Example
gopay-productionReturns the sensitive API credentials for a payment gateway. This endpoint is separated from the detail endpoint for security reasons - credentials should only be fetched when explicitly needed (e.g., when editing gateway configuration). Requires elevated permissions.
1 query
codestringRequiredUnique code/slug of the gateway instance.
gopay-production1 status code documented
publicKeystringOptionalPublic API key (if applicable).
secretKeystringOptionalSecret API key (if applicable).
merchantIdstringOptionalMerchant ID (if applicable).
secureKeystringOptionalAdditional secure key (if applicable).
{
"publicKey": "example_publicKey",
"secretKey": "example_secretKey",
"merchantId": "example_merchantId",
"secureKey": "example_secureKey"
}GET /bff/payment-gateway/keys
curl -X GET "https://api.bizkithub.com/bff/payment-gateway/keys?code=gopay-production" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.