Parameters
1 query
Query parameters
· 1codestringRequiredUnique code/slug of the gateway instance.
gopay-productionReturns detailed information about a specific payment gateway instance, including configuration, extended statistics (success rate, total amount processed), and metadata. Sensitive credentials are NOT included - use the /keys endpoint for those.
1 query
codestringRequiredUnique code/slug of the gateway instance.
gopay-production1 status code documented
idstringRequiredInternal database ID.
codestringRequiredUnique identifier/slug for this gateway instance.
descriptionstringRequiredHuman-readable description.
environment"p" | "s" | "t"RequiredEnvironment: "p" = Production, "s" = Sandbox, "t" = Test.
environmentLabelstringRequiredHuman-readable environment label.
activebooleanRequiredWhether the gateway is active.
insertedDateDate | string | string | numberRequiredDate when the gateway was configured.
Date when the gateway was configured.
merchantIdstringOptionalMerchant ID (if applicable for the provider).
extraobjectRequiredAdditional provider-specific configuration.
providerIdnumberRequiredInternal provider ID.
gatewayCodestringRequiredProvider code.
gatewayNamestringRequiredProvider name.
paymentCountnumberRequiredTotal number of payments.
paidPaymentCountnumberRequiredNumber of successful payments.
totalAmountnumberRequiredTotal amount processed (successful payments only).
lastUsedDateDate | string | string | numberOptionalDate of most recent payment.
Date of most recent payment.
firstUsedDateDate | string | string | numberOptionalDate of first payment.
Date of first payment.
issuerobjectRequiredInvoice issuer bound to this gateway. Always present — the FK on the instance table is NOT NULL.
externalIdstringRequiredIssuer contact external id.
displayNamestringRequiredIssuer display name (first + last name; falls back to company name; falls back to id).
companyNamestringOptionalCompany name if set.
companyRegistrationNumberstringOptionalCompany registration number (IČO).
taxIdentificationNumberstringOptionalTax identification number (DIČ / VAT id).
primaryAddressobjectOptionalPrimary billing address of the issuer. Absent when the contact has none configured.
streetAddressstringOptionalcitystringOptionalpostalCodestringOptionalcountrystringOptionalboundOrderGroupCountnumberRequiredHow many shop__order_group rows in this org already use this contact as their invoice issuer. Non-zero means the admin can verify the same contact is really used as an invoice issuer elsewhere.
{
"id": "example_id",
"code": "example_code",
"description": "example_description",
"environmentLabel": "example_environmentLabel",
"active": false,
"merchantId": "example_merchantId",
"extra": {},
"providerId": 0,
"gatewayCode": "example_gatewayCode",
"gatewayName": "example_gatewayName",
"paymentCount": 0,
"paidPaymentCount": 0,
"totalAmount": 0,
"issuer": {
"externalId": "example_externalId",
"displayName": "example_displayName",
"companyName": "example_companyName",
"companyRegistrationNumber": "example_companyRegistrationNumber",
"taxIdentificationNumber": "example_taxIdentificationNumber",
"primaryAddress": {
"streetAddress": "example_streetAddress",
"city": "example_city",
"postalCode": "example_postalCode",
"country": "example_country"
},
"boundOrderGroupCount": 0
}
}GET /bff/payment-gateway/detail
curl -X GET "https://api.bizkithub.com/bff/payment-gateway/detail?code=gopay-production" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.