POST api/Customer/ValidateCaptcha
Request Information
URI Parameters
None.
Body Parameters
ValidateCaptchaRequestName | Description | Type | Additional information |
---|---|---|---|
UserId | globally unique identifier |
None. |
|
Code | string |
None. |
|
KeepCaptchaForUser | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserId": "b71eebb9-3230-4be0-a098-aee9dd746f5c", "Code": "sample string 2", "KeepCaptchaForUser": true }
application/xml, text/xml
Sample:
<ValidateCaptchaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <Code>sample string 2</Code> <KeepCaptchaForUser>true</KeepCaptchaForUser> <UserId>b71eebb9-3230-4be0-a098-aee9dd746f5c</UserId> </ValidateCaptchaRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ValidateCaptchaResponseName | Description | Type | Additional information |
---|---|---|---|
IsValid | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsValid": true }
application/xml, text/xml
Sample:
<ValidateCaptchaResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <IsValid>true</IsValid> </ValidateCaptchaResponse>