Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns the union of (a) all payment gateway instances owned by the organisation and (b) gateway instances owned by other organisations that are already referenced by at least one of this organisation's order groups via shop__order_payment_gateway_preference (legacy cross-organisation bindings). Used by the workflow "Payment gateway for group" modal so the operator can keep historical bindings consistent across groups.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredGateway instance eligible for selection as an order-group preference.
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.
gatewayCodestringRequiredProvider code (e.g., "gopay", "comgate", "stripe").
gatewayNamestringRequiredHuman-readable provider name.
foreignbooleanRequiredTrue when the gateway instance is owned by a different organisation but already referenced by one of this organisation's order groups (legacy binding).
itemCountnumberRequiredTotal number of items.
{
"items": [
{
"code": "example_code",
"description": "example_description",
"active": false,
"gatewayCode": "example_gatewayCode",
"gatewayName": "example_gatewayName",
"foreign": false
}
],
"itemCount": 0
}GET /bff/payment-gateway/list-for-order-group
curl -X GET "https://api.bizkithub.com/bff/payment-gateway/list-for-order-group" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.