Partner APIs: Merchant Onboarding
Configure Products and Fees
Configures which payment products to enable for the merchant and sets fee structures. All card networks must be included when enabling INTERNATIONAL_CARDS_AND_ALT_PAYS.
PUT
Configure Products and Fees
Documentation Index
Fetch the complete documentation index at: https://payglocal.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
When to Use
Configures which payment products to enable for the merchant and sets the fee structure for each. Must be completed before triggering Get Verification Redirect.Fee Structure Rules
TheproductFees object is keyed by product name. The shape of each value depends on the product:
GLOBAL_FUND_TRANSFER— single object withfeeType(FIXEDorPERCENTAGE) andfee(number).INTERNATIONAL_CARDS_AND_ALT_PAYS— array of objects, one entry per card network. All five card networks must be present:AMERICAN_EXPRESS,DINERS,DISCOVER,OTHER_DEBIT_CARDS,OTHER_CREDIT_CARDS.DOMESTIC_CARDS_UPI_AND_INB— single object withfeeType(FIXEDorPERCENTAGE) andfeeRate(up to 2 decimal places).
products array to offer the full PayGlocal product suite.
Error Scenarios
| Scenario | HTTP Code |
|---|---|
| Missing required fields | 400 |
| Invalid field format | 400 |
onboardingId does not exist | 404 |
onboardingId does not belong to this partner | 403 |
Authorizations
Static API Key generated from the PayGlocal Partner Dashboard.
Per-request HmacSHA256 signature, Base64-encoded, using your API Secret as the HMAC key.
- For GET requests: sign the request URI path (e.g.
/gcc/v2/partner/merchant/onboard/business-category), including query string if present. - For POST/PUT requests: sign the exact raw request body.
Path Parameters
Body
application/json
List of payment products to enable.
Available options:
GLOBAL_FUND_TRANSFER, INTERNATIONAL_CARDS_AND_ALT_PAYS, DOMESTIC_CARDS_UPI_AND_INB Example:
[
"GLOBAL_FUND_TRANSFER",
"INTERNATIONAL_CARDS_AND_ALT_PAYS",
"DOMESTIC_CARDS_UPI_AND_INB"
]Fee configuration keyed by product name.
Configure Products and Fees

