GET api/Country/GetAllCountry

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of 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:
[
  {
    "$id": "1",
    "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
    }
  },
  {
    "$ref": "1"
  }
]