Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json · object
Response
200 - application/json
The response is of type object
.
curl --request POST \
--url https://api.unibee.top/merchant/vat/country_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'
{
"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>"
}
curl --request POST \
--url https://api.unibee.top/merchant/vat/country_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'
{
"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>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.