Use this call to create new countries
Name | Type | Description |
---|---|---|
countries | IEnumerable<Country> | Countries to create |
The following request format is required for this method.
GET | POST https://eu-ext.linnworks.net/api/Inventory/CreateCountries
Connection: keep-alive
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept-Encoding: gzip, deflate
Authorization: INSERT_YOUR_TOKEN_HERE
This is an example of the request structure. Results will vary depending on your data.
countries=[
{
"CountryId": "552e52f1-492b-4858-b787-710f7ea216f9",
"CountryName": "sample string 2",
"CountryCode": "sample string 3",
"Continent": "sample string 4",
"Currency": "sample string 5",
"CustomsRequired": true,
"TaxRate": 1.1,
"AddressFormat": "sample string 7",
"Regions": [
{
"pkRegionRowId": 1,
"RegionCode": "sample string 2",
"RegionName": "sample string 3",
"TaxRate": 1.1,
"fkCountryId": "4da3237f-12ce-4a36-a4e3-40da177e5e82",
"ReplaceWith": 0,
"IsHomeRegion": true,
"TagsCount": 6
}
],
"RegionsCount": 8
}
]
This is an example of the response JSON. Results will vary depending on your data.