GET api/CountryMasters?clientid={clientid}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientid

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomCountryMaster
NameDescriptionTypeAdditional information
CountryID

globally unique identifier

None.

Country

string

None.

Description

string

None.

Entity

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CountryID": "d2dc8ef5-73a9-41cd-bb04-bfd09194e1a6",
    "Country": "sample string 2",
    "Description": "sample string 3",
    "Entity": "6db1d01b-0098-482e-9adc-3b000b143df8"
  },
  {
    "CountryID": "d2dc8ef5-73a9-41cd-bb04-bfd09194e1a6",
    "Country": "sample string 2",
    "Description": "sample string 3",
    "Entity": "6db1d01b-0098-482e-9adc-3b000b143df8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomCountryMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRAApi.CustomModel">
  <CustomCountryMaster>
    <Country>sample string 2</Country>
    <CountryID>d2dc8ef5-73a9-41cd-bb04-bfd09194e1a6</CountryID>
    <Description>sample string 3</Description>
    <Entity>6db1d01b-0098-482e-9adc-3b000b143df8</Entity>
  </CustomCountryMaster>
  <CustomCountryMaster>
    <Country>sample string 2</Country>
    <CountryID>d2dc8ef5-73a9-41cd-bb04-bfd09194e1a6</CountryID>
    <Description>sample string 3</Description>
    <Entity>6db1d01b-0098-482e-9adc-3b000b143df8</Entity>
  </CustomCountryMaster>
</ArrayOfCustomCountryMaster>