Payment Options
Before any transaction request is performed, it's recommended that the payment options available to the merchant account are known. This endpoint returns that list.
Get Payment Options List
Query Parameters
Name
Type
Description
Headers
Name
Type
Description
Sample Payment Options Request
curl https://gwapisdbx.gbipayments.com/data/payment-providers?currency=UGX&transaction_type=COLLECTION \
-H "Accept: application/json" \
-H "x-api-version: 1" \
-H "public-key: your-public-key"{
"code": 200,
"status": "success",
"message": "Request completed successfully.",
"data": {
"payment_providers": [
{
"provider_name": "MTN Mobile Money Uganda",
"provider_code": "mtn_momo_ug",
"transaction_method": "MOBILE_MONEY",
"transaction_method_name": "Mobile Money",
"transaction_type": "Collection",
"transaction_currency": "UGX",
"min_amount": 500,
"max_amount": 3000000,
"max_daily_amount": 7000000,
"is_active": true,
"option_prefixes": [
"77",
"78",
"76",
"39"
]
},
{
"provider_name": "Airtel Money Uganda",
"provider_code": "airtel_money_ug",
"transaction_method": "MOBILE_MONEY",
"transaction_method_name": "Mobile Money",
"transaction_type": "Collection",
"transaction_currency": "UGX",
"min_amount": 500,
"max_amount": 3000000,
"max_daily_amount": 7000000,
"is_active": true,
"option_prefixes": [
"74",
"75",
"70"
]
}
]
}
}
Parameter
Type
Description
Last updated