GET
/
merchant
/
vat
/
country_list
curl --request GET \
  --url https://api.unibee.top/merchant/vat/country_list \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "vatCountryList": [
      {
        "countryCode": "<string>",
        "countryName": "<string>",
        "gateway": "<string>",
        "id": 123,
        "isEU": true,
        "mamo": "<string>",
        "standardTaxPercentage": 123,
        "vatSupport": true
      }
    ]
  },
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
code
integer
data
object
message
string
redirect
string
requestId
string