GET api/Country/GetSingleCountry/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

CountryDto
NameDescriptionTypeAdditional information
CountryId

integer

None.

Name

string

None.

RecordStatus

byte

None.

CurrencyId

integer

None.

CurrencyDto

CurrencyDto

None.

Response Formats

application/json, text/json

Sample:
{
  "countryId": 1,
  "name": "sample string 2",
  "recordStatus": 64,
  "currencyId": 4,
  "currencyDto": {
    "$id": "2",
    "currencyId": 1,
    "code": "sample string 2",
    "name": "sample string 3",
    "recordStatus": 64
  }
}