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": "57939656-db77-43d2-acbd-86121d2537aa", "Country": "sample string 2", "Description": "sample string 3", "Entity": "308990b3-751e-4050-92dc-d3c70be5ee9a" }, { "CountryID": "57939656-db77-43d2-acbd-86121d2537aa", "Country": "sample string 2", "Description": "sample string 3", "Entity": "308990b3-751e-4050-92dc-d3c70be5ee9a" } ]
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>57939656-db77-43d2-acbd-86121d2537aa</CountryID> <Description>sample string 3</Description> <Entity>308990b3-751e-4050-92dc-d3c70be5ee9a</Entity> </CustomCountryMaster> <CustomCountryMaster> <Country>sample string 2</Country> <CountryID>57939656-db77-43d2-acbd-86121d2537aa</CountryID> <Description>sample string 3</Description> <Entity>308990b3-751e-4050-92dc-d3c70be5ee9a</Entity> </CustomCountryMaster> </ArrayOfCustomCountryMaster>