POST api/MFData/GetIdentificationType
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
GetIdentificationTypeOutputModels| Name | Description | Type | Additional information |
|---|---|---|---|
| GetIdentificationList | Collection of GetIdentificationListModels |
None. |
|
| ResponseCode | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"GetIdentificationList": [
{
"ID_CODE": "sample string 1",
"ID_CODE_DESC": "sample string 2"
},
{
"ID_CODE": "sample string 1",
"ID_CODE_DESC": "sample string 2"
}
],
"ResponseCode": "sample string 1",
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<GetIdentificationTypeOutputModels 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>
<GetIdentificationList>
<GetIdentificationListModels>
<ID_CODE>sample string 1</ID_CODE>
<ID_CODE_DESC>sample string 2</ID_CODE_DESC>
</GetIdentificationListModels>
<GetIdentificationListModels>
<ID_CODE>sample string 1</ID_CODE>
<ID_CODE_DESC>sample string 2</ID_CODE_DESC>
</GetIdentificationListModels>
</GetIdentificationList>
</GetIdentificationTypeOutputModels>