POST api/MFData/GetCountry
Request Information
URI Parameters
None.
Body Parameters
Authentication| Name | Description | Type | Additional information |
|---|---|---|---|
| consumerSecret | string |
None. |
|
| consumerKey | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"consumerSecret": "sample string 1",
"consumerKey": "sample string 2"
}
application/xml, text/xml
Sample:
<Authentication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Datacomp.AppServices.UI.WM.WMVideoKYCWrapper.Models"> <consumerKey>sample string 2</consumerKey> <consumerSecret>sample string 1</consumerSecret> </Authentication>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CountryListOutputModels| Name | Description | Type | Additional information |
|---|---|---|---|
| CountryList | Collection of CountryListModels |
None. |
|
| ResponseCode | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"CountryList": [
{
"COUNTRY_NAME": "sample string 1",
"COUNTRY_CODE": "sample string 2"
},
{
"COUNTRY_NAME": "sample string 1",
"COUNTRY_CODE": "sample string 2"
}
],
"ResponseCode": "sample string 1",
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<CountryListOutputModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Datacomp.AppServices.UI.WM.WMVideoKYCWrapper.Models">
<Message>sample string 2</Message>
<ResponseCode>sample string 1</ResponseCode>
<CountryList>
<CountryListModels>
<COUNTRY_CODE>sample string 2</COUNTRY_CODE>
<COUNTRY_NAME>sample string 1</COUNTRY_NAME>
</CountryListModels>
<CountryListModels>
<COUNTRY_CODE>sample string 2</COUNTRY_CODE>
<COUNTRY_NAME>sample string 1</COUNTRY_NAME>
</CountryListModels>
</CountryList>
</CountryListOutputModels>