POST api/Customer/ValidateCaptcha
Request Information
URI Parameters
None.
Body Parameters
ValidateCaptchaRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| KeepCaptchaForUser | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": "d8c2c9d9-92f8-43a5-b98f-8596e6f4b11f",
"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>d8c2c9d9-92f8-43a5-b98f-8596e6f4b11f</UserId> </ValidateCaptchaRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ValidateCaptchaResponse| Name | 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>