curl --request POST \
--url https://api.unibee.top/merchant/gateway/edit_country_config \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"countryConfig": {},
"gatewayId": 123
}'
{
"code": 123,
"data": {},
"message": "<string>",
"redirect": "<string>",
"requestId": "<string>"
}
Edit country config for payment gateway, to enable or disable the payment for countryCode, default is enable
curl --request POST \
--url https://api.unibee.top/merchant/gateway/edit_country_config \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"countryConfig": {},
"gatewayId": 123
}'
{
"code": 123,
"data": {},
"message": "<string>",
"redirect": "<string>",
"requestId": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Edit country config for payment gateway, to enable or disable the payment for countryCode, default is enable
The response is of type object
.