Request Information
Method returns country by Id.
Example URL:
v2.0/Countries/{id}
Name | Description | Type | Additional information |
---|---|---|---|
id |
Country Id |
integer |
Required |
id |
Country Id |
integer |
Required |
None.
Response Information
CountryApiModel
Name | Description | Type | Additional information |
---|---|---|---|
Code | string |
None. |
|
Currency | CurrencyApiModel |
None. |
|
CurrencyId | integer |
None. |
|
DateLastChange | date |
None. |
|
Id |
Resource identifier |
integer |
Readonly |
IsEuMember |
Indicates whether the country is member of the European Union |
boolean |
None. |
Name | string |
None. |
|
NameEnglish | string |
None. |
Sample:
{ "Code": "sample string 1", "Currency": { "Code": "sample string 1", "Country": "sample string 2", "Name": "sample string 3", "Priority": 4, "Symbol": "sample string 5", "Id": 6 }, "CurrencyId": 2, "DateLastChange": "2024-11-02T05:44:06.2188739+00:00", "Name": "sample string 4", "NameEnglish": "sample string 5", "IsEuMember": true, "Id": 7 }
Sample:
<CountryApiModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Doklad.Api.ApiModels.ReadOnlyEntites"> <Id xmlns="http://schemas.datacontract.org/2004/07/Doklad.Api.ApiModels.BaseModels">7</Id> <Links xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Doklad.Api.ApiModels.BaseModels"> <d2p1:KeyValueOfstringstring> <d2p1:Key>sample string 1</d2p1:Key> <d2p1:Value>sample string 2</d2p1:Value> </d2p1:KeyValueOfstringstring> </Links> <Code>sample string 1</Code> <Currency> <Id xmlns="http://schemas.datacontract.org/2004/07/Doklad.Api.ApiModels.BaseModels">6</Id> <Links xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/Doklad.Api.ApiModels.BaseModels"> <d3p1:KeyValueOfstringstring> <d3p1:Key>sample string 1</d3p1:Key> <d3p1:Value>sample string 2</d3p1:Value> </d3p1:KeyValueOfstringstring> </Links> <Code>sample string 1</Code> <Country>sample string 2</Country> <Name>sample string 3</Name> <Priority>4</Priority> <Symbol>sample string 5</Symbol> </Currency> <CurrencyId>2</CurrencyId> <DateLastChange>2024-11-02T05:44:06.2188739+00:00</DateLastChange> <IsEuMember>true</IsEuMember> <Name>sample string 4</Name> <NameEnglish>sample string 5</NameEnglish> </CountryApiModel>