- Products
- Product Categories
- Team
- Employees
- Orders
- Discount Codes
- Purchase Order Management
- Reports
-
Channel - Website
- Articles
- Data Object: Article
- Data Object: Brand
- Data Object: Cities
- Data Object: Countries
- Data Object: Customer
- Data Object: Order
- Data Object: Payment Method
- Data Object: Predefined Objects
- Data Object: Product
- Data Object: Product Categories
- Data Object: Product Set
- Data Object: Promo Banners
- Data Object: Property
- Data Object: Property Group
- Data Object: Shipping Rates
- Data Object: Shopping Cart
- Data Object: Slider
- Data Object: States
- Data Object: Wish List
- End Point: Account
- End Point: Order
- End Point: Send Email
- End Point: Shopping Cart
- End Point: Subscribe
- End Point: Wish List
- Promo Banners
- Sliders
- Twig - Template Engine
- Channel - POS
Data Object: Countries
Get Country
{{ data.country.get(:id) }}
Parameter | Type | Description |
id required | int | Country Identifier |
HHTP/1.1 200 OK
{
id: 5,
name: "Armenia",
iso1: "am",
iso2: "ARM",
dialCode: "+374",
languageId: 1,
languagePrefix: "en"
}
or
false
Parameter | Type | Description |
id | int | Country identifier |
name | string | Country name |
iso1 | string | ISO alpha-2 code of country |
iso2 | string | ISO alpha-3 code of country |
dialCode | string | Phone dial code of country |
languageId | int | Request language identifier |
languagePrefix | string | Request language prefix |
Get Country List
{{ data.country.list({}) }}
HTTP/1.1 200 OK
{
{
id: 5,
name: "Armenia",
iso1: "am",
iso2: "ARM",
dialCode: "+374",
languageId: 1,
languagePrefix: "en"
}
...
}
or
[]
Parameter | Type | Description |
id | int | Country identifier |
name | string | Country name |
iso1 | string | ISO alpha-2 code of country |
iso2 | string | ISO alpha-3 code of country |
dialCode | string | Phone dial code of country |
languageId | int | Request language identifier |
languagePrefix | string | Request language prefix |