POST api/V3/Outlet/UpdateKYCStatus
Api to Update the KYC status of an Outlet
Request Information
URI Parameters
None.
Body Parameters
The outlet to be Verified/Rejected KYC status
V3.UpdateKYCOutlet| Name | Description | Type | Additional information |
|---|---|---|---|
| OutletErpId |
ErpId of the outlet to reject/verify KYC status |
string |
None. |
| IsKYCVerified |
Should it be Verifed? |
boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"OutletErpId": "sample string 1",
"IsKYCVerified": true
}
application/xml, text/xml
Sample:
<UpdateKYCOutlet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.V3.Models"> <IsKYCVerified>true</IsKYCVerified> <OutletErpId>sample string 1</OutletErpId> </UpdateKYCOutlet>
Response Information
Resource Description
ApiResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| ERPId |
ERPID of the Requested insertion/updation |
string |
None. |
| Message |
Error Message for the indicated ERPID |
string |
None. |
| ResponseStatus |
Status of the action requested from Api |
ResponseStatus |
None. |
| GUID |
GUID of the database Entry with respect to the ERP Id Provided |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ERPId": "sample string 1",
"Message": "sample string 2",
"ResponseStatus": "Failure",
"GUID": "sample string 3"
}
application/xml, text/xml
Sample:
<ApiResponseMessage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.Models.Common"> <ERPId>sample string 1</ERPId> <GUID>sample string 3</GUID> <Message>sample string 2</Message> <ResponseStatus>Failure</ResponseStatus> </ApiResponseMessage>