POST api/Customer/ForgotUsernamePassword/2/OTPVerification?Signature={Signature}&Language={Language}
[2] This will verify the OTP sent to the email address or mobile phone number.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
Signature |
SHA256(Body + Client_Key + Login_Salt + ForgotUsernamePassword_Salt) |
string |
Required |
Language | API.LANGUAGE |
Default value is en_US |
Body Parameters
Requests.Customers.ForgotUsernamePassswords.OTPVerificationName | Description | Type | Additional information |
---|---|---|---|
ClientCode | string |
None. |
|
DateTime | date |
None. |
|
Content | Forms.Customers.ForgotUsernamePasswords.OTPForm |
None. |
Request Formats
application/json, text/json
Sample:
{ "ClientCode": "sample string 1", "DateTime": "2024-11-18T11:35:37.2897266+08:00", "Content": { "CustomerForgotUsernamePasswordID": 1, "OTP": "sample string 2" } }
text/html
Sample:
{"ClientCode":"sample string 1","DateTime":"2024-11-18T11:35:37.2897266+08:00","Content":{"CustomerForgotUsernamePasswordID":1,"OTP":"sample string 2"}}
application/xml, text/xml
Sample:
<OTPVerification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code.Requests.Customers.ForgotUsernamePassswords"> <ClientCode xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">sample string 1</ClientCode> <Content xmlns:d2p1="http://schemas.datacontract.org/2004/07/CBSS_API.Forms.Customers.ForgotUsernamePasswords" xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code"> <d2p1:CustomerForgotUsernamePasswordID>1</d2p1:CustomerForgotUsernamePasswordID> <d2p1:OTP>sample string 2</d2p1:OTP> </Content> <DateTime xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">2024-11-18T11:35:37.2897266+08:00</DateTime> </OTPVerification>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Responses.Customers.ForgotUsernamePassswords.OTPVerificationName | Description | Type | Additional information |
---|---|---|---|
IsSuccessful | boolean |
None. |
|
Messages | Collection of Models.Message |
None. |
|
ClientCode | string |
None. |
|
DateTime | date |
None. |
|
Content | Object |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsSuccessful": true, "Messages": [], "ClientCode": "sample string 2", "DateTime": "2024-11-18T11:35:37.3053528+08:00", "Content": {} }
text/html
Sample:
{"IsSuccessful":true,"Messages":[],"ClientCode":"sample string 2","DateTime":"2024-11-18T11:35:37.3053528+08:00","Content":{}}
application/xml, text/xml
Sample:
<OTPVerification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code.Responses.Customers.ForgotUsernamePassswords"> <ClientCode xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">sample string 2</ClientCode> <Content xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code" /> <DateTime xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code">2024-11-18T11:35:37.3053528+08:00</DateTime> <IsSuccessful xmlns="http://schemas.datacontract.org/2004/07/CBSS_API.App_Code.Responses">true</IsSuccessful> </OTPVerification>