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": "b0b5aedf-0995-44c7-a351-44902b2a2b53", "Country": "sample string 2", "Description": "sample string 3", "Entity": "da8ec2ae-d191-4269-81b9-e63521b02736" }, { "CountryID": "b0b5aedf-0995-44c7-a351-44902b2a2b53", "Country": "sample string 2", "Description": "sample string 3", "Entity": "da8ec2ae-d191-4269-81b9-e63521b02736" } ]
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>b0b5aedf-0995-44c7-a351-44902b2a2b53</CountryID> <Description>sample string 3</Description> <Entity>da8ec2ae-d191-4269-81b9-e63521b02736</Entity> </CustomCountryMaster> <CustomCountryMaster> <Country>sample string 2</Country> <CountryID>b0b5aedf-0995-44c7-a351-44902b2a2b53</CountryID> <Description>sample string 3</Description> <Entity>da8ec2ae-d191-4269-81b9-e63521b02736</Entity> </CustomCountryMaster> </ArrayOfCustomCountryMaster>