# API: Get Country Taxes

# getCountryTaxDetails

Get list of taxes configured for country/state

# Required parameters

Parameter Description
country Country to list taxes for

# Optional parameters

Parameter Description
state Optional state to list taxes for

# Request

GET /admin/api.php?api_id=API_ID&api_key=API_KEY&call=getCountryTaxDetails&country=COUNTRY

# PHP Samples

# Response

{
    "success": true,
    "taxes": {
        "L1": {
            "priority": 2,
            "type": "L1",
            "name": "VAT",
            "rate": "19.00",
            "tax_group_id": 1,
            "applyto": "net",
            "negative": true,
            "condition": "",
            "id": "13",
            "country": "DE",
            "state": "0",
            "source": "region",
            "taxtotal": 19
        }
    },
    "call": "getCountryTaxDetails",
    "server_time": 1716540965
}
Last Updated: 10/7/2024, 2:36:43 PM