GET api/CountryMasters?clientid={clientid}
Get list of country by client id
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientid |
for which client we need list |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
list
Collection of CustomCountryMasterName | Description | Type | Additional 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": "01966967-2b8b-4ef9-bf04-76f7abb55693", "Country": "sample string 2", "Description": "sample string 3", "Entity": "966bd1e0-f9ba-45cb-b959-17e9a4af87c8" }, { "CountryID": "01966967-2b8b-4ef9-bf04-76f7abb55693", "Country": "sample string 2", "Description": "sample string 3", "Entity": "966bd1e0-f9ba-45cb-b959-17e9a4af87c8" } ]
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>01966967-2b8b-4ef9-bf04-76f7abb55693</CountryID> <Description>sample string 3</Description> <Entity>966bd1e0-f9ba-45cb-b959-17e9a4af87c8</Entity> </CustomCountryMaster> <CustomCountryMaster> <Country>sample string 2</Country> <CountryID>01966967-2b8b-4ef9-bf04-76f7abb55693</CountryID> <Description>sample string 3</Description> <Entity>966bd1e0-f9ba-45cb-b959-17e9a4af87c8</Entity> </CustomCountryMaster> </ArrayOfCustomCountryMaster>