Parameters
1 query
Query parameters
· 1codestringRequiredGateway instance code.
Example
gopay-productionChecks if the gateway credentials are configured and tests the actual connection to the payment provider. Returns masked credentials for display in UI.
1 query
codestringRequiredGateway instance code.
gopay-production1 status code documented
configuredbooleanRequiredWhether credentials are fully configured.
connectionWorksbooleanRequiredWhether the connection test succeeded.
provider"gopay" | "comgate" | "stripe"RequiredPayment provider type.
environment"p" | "s" | "t"RequiredEnvironment: "p" = Production, "s" = Sandbox, "t" = Test.
credentialsobjectRequiredMasked credentials for UI display.
merchantIdstringOptionalMerchant ID (if applicable).
publicKeystringOptionalPublic API key (if applicable).
secretKeystringOptionalMasked secret API key.
secureKeystringOptionalMasked secure key.
{
"configured": false,
"connectionWorks": false,
"credentials": {
"merchantId": "example_merchantId",
"publicKey": "example_publicKey",
"secretKey": "example_secretKey",
"secureKey": "example_secureKey"
}
}GET /bff/payment-gateway/connection-status
curl -X GET "https://api.bizkithub.com/bff/payment-gateway/connection-status?code=gopay-production" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.