Country

The Country resource represents the tax rates applied to orders from the different countries where a shop sells its products.

Country - 图1

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:

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

View Response

Retrieve all countries after the specified ID

GET /admin/api/2021-01/countries.json?since_id=359115488

View Response

GET/admin/api/2021-01/countries/count.json Retrieves a count of countries.

Count all countries

GET /admin/api/2021-01/countries/count.json

View Response

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

View Response

POST/admin/api/2021-01/countries.json

Caution

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”: {

  1. "code": "FR"

}

}

View Response

Create a country using a custom tax rate

POST /admin/api/2021-01/countries.json

{

“country”: {

  1. "code": "FR",
  2. "tax": 0.2

}

}

View Response

PUT/admin/api/2021-01/countries/{country_id}.json

Caution

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”: {

  1. "id": 879921427,
  2. "tax": 0.05

}

}

View Response

DELETE/admin/api/2021-01/countries/{country_id}.json Deletes a country.

Delete a country

DELETE /admin/api/2021-01/countries/879921427.json

View Response