GET api/Admin/CountryState/{id}

Allows you to get a specific Rep Classification Type

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

ID of to get

integer

Required

Body Parameters

None.

Response Information

Resource Description

with the information

ICountryState
NameDescriptionTypeAdditional information
ID

integer

None.

Country

string

None.

State

string

None.

Abbreviation

string

None.

SavedValue

string

None.

IsActive

boolean

None.

SortOrder

integer

None.

Response Formats

application/xml, text/xml

Sample:
<CountryState>
  <ID>0</ID>
  <Country />
  <State />
  <Abbreviation />
  <SavedValue />
  <IsActive>True</IsActive>
  <SortOrder>1000</SortOrder>
  <CreatedBy />
  <DateCreated>01/01/0001 00:00:00</DateCreated>
  <LastModifiedBy />
  <DateLastModified />
</CountryState>

application/json, text/json

Sample:
{
  "ID": 0,
  "IsActive": true,
  "SortOrder": 1000,
  "DateCreated": "0001-01-01T00:00:00"
}