Country
The Country resource represents the tax rates applied to orders from the different countries where a shop sells its products.
Merchants select the countries where they sell their products when they set up their shipping zones and rates on the Shipping page of the Shopify admin. After adding a country to a shipping zone, store owners can then verify and adjust tax rates for each country on the Taxes page.
The Country resource lets you access the countries and tax rates set up by the merchant. The countries list includes a default entry called Rest of World, which represents all non-specified countries.
You can use the Country resource to modify the sales tax rate for a country or sub-region to account for surtaxes or exemptions that apply to the store.
For more information on managing tax rates for sub-regions of a country, such as states or provinces, see the Province resource.
Caution
As of version 2020-10, you can no longer create or update custom tax values for the Country resource.
What you can do with Country
The Shopify API lets you do the following with the Country resource. More detailed versions of these general actions may be available:
- GET /admin/api/2021-01/countries.jsonReceive a list of all Countries
- GET /admin/api/2021-01/countries/count.jsonRetrieves a count of countries
- GET /admin/api/2021-01/countries/{country_id}.jsonRetrieves a specific county
- POST /admin/api/2021-01/countries.jsonCreates a country
- PUT /admin/api/2021-01/countries/{country_id}.jsonUpdates an existing country
- DELETE /admin/api/2021-01/countries/{country_id}.jsonRemove an existing Country
Country properties
code | plain "code": "CA" The two-letter country code (ISO 3166-1 alpha-2 format). |
---|---|
id | plain "id": 879921427 The ID for the country. The ID for a country is unique across all Shopify stores. The ID for a country in one shop will be different from the same country in another shop. |
name | plain "name": "Canada" The full name of the country in English. |
provinces | plain "provinces": [ { "code": "ON", "country_id": 879921427, "id": 205434194, "name": "Ontario", "tax": 0.13, "tax_name": "HST", "tax_type": "harmonized", "tax_percentage": 13 } ] The sub-regions of a country, such as its provinces or states. Each sub-region has the following properties:+ code: The two letter province or state code. + country_id: The ID for the country to which this sub-region belongs. + id: The ID for the particular sub-region. + name: The name of the sub-region. + tax: The tax value in decimal format. + tax_name: The name of the tax as it is referred to in the applicable sub-region. For example, in Canada, the sales tax in the province Ontario is referred to as HST. + tax_type: The tax type. Valid values: null , normal , or harmonized . If the value is harmonized , then the tax is compounded of the provincial and federal sales taxes.+ tax_percentage: The tax value in percent format. |
tax | plain "tax": 0.05 The national sales tax rate applied to orders made by customers from that country. |
Endpoints
GET/admin/api/2021-01/countries.json Retrieves a list of countries.since_id | Restrict results to after the specified ID. |
---|---|
fields | Show only certain fields, specified by a comma-separated list of field names. |
Retrieve all countries
GET /admin/api/2021-01/countries.json
Retrieve all countries after the specified ID
GET /admin/api/2021-01/countries.json?since_id=359115488
GET/admin/api/2021-01/countries/count.json Retrieves a count of countries.Count all countries
GET /admin/api/2021-01/countries/count.json
GET/admin/api/2021-01/countries/{country_id}.json Retrieves a specific county.fields | Show only certain fields, specified by a comma-separated list of field names. |
---|---|
Retrieve a specific country by its ID
GET /admin/api/2021-01/countries/879921427.json
POST/admin/api/2021-01/countries.jsonCaution
As of version 2020-10, the tax field is deprecated.
Creates a country.
Create a country using Shopify’s tax rate for it
POST /admin/api/2021-01/countries.json
{
“country”: {
"code": "FR"
}
}
Create a country using a custom tax rate
POST /admin/api/2021-01/countries.json
{
“country”: {
"code": "FR",
"tax": 0.2
}
}
PUT/admin/api/2021-01/countries/{country_id}.jsonCaution
As of version 2020-10, the tax field is deprecated.
Updates an existing country.
Update a country’s tax rate
PUT /admin/api/2021-01/countries/879921427.json
{
“country”: {
"id": 879921427,
"tax": 0.05
}
}
DELETE/admin/api/2021-01/countries/{country_id}.json Deletes a country.Delete a country
DELETE /admin/api/2021-01/countries/879921427.json