GET api/Admin/Country/MiscField

Returns all Active Countries and Misc field information

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of CountryMiscViewModel
NameDescriptionTypeAdditional information
Country

ICountry

None.

MiscFields

Dictionary of string [key] and Object [value]

None.

Response Formats

application/xml, text/xml

Sample:
<ListOfCountryMiscViewModel>
  <CountryMiscViewModel>
    <Country />
    <MiscFields>
      <KeyValuePairOfStringObject>
        <Key>sample string 1</Key>
        <Value />
      </KeyValuePairOfStringObject>
      <KeyValuePairOfStringObject>
        <Key>sample string 3</Key>
        <Value />
      </KeyValuePairOfStringObject>
    </MiscFields>
  </CountryMiscViewModel>
  <CountryMiscViewModel>
    <Country />
    <MiscFields>
      <KeyValuePairOfStringObject>
        <Key>sample string 1</Key>
        <Value />
      </KeyValuePairOfStringObject>
      <KeyValuePairOfStringObject>
        <Key>sample string 3</Key>
        <Value />
      </KeyValuePairOfStringObject>
    </MiscFields>
  </CountryMiscViewModel>
</ListOfCountryMiscViewModel>

application/json, text/json

Sample:
[
  {
    "MiscFields": {
      "sample string 1": {},
      "sample string 3": {}
    }
  },
  {
    "MiscFields": {
      "sample string 1": {},
      "sample string 3": {}
    }
  }
]