POST api/notifications/ValidateCaptchaUserToken
This method will validate catcha user token received from the client
Request Information
URI Parameters
None.
Body Parameters
Instance of
CaptchaBindingModelName | Description | Type | Additional information |
---|---|---|---|
UserResponseToken | string |
Required |
|
RemoteIp | string |
Required |
Request Formats
application/json, text/json
Sample:
{ "userResponseToken": "sample string 1", "remoteIp": "sample string 2" }
text/html
Sample:
{"userResponseToken":"sample string 1","remoteIp":"sample string 2"}
application/xml, text/xml
Sample:
<CaptchaBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ptd.Model.WebModels.NotificationBinding"> <RemoteIp>sample string 2</RemoteIp> <UserResponseToken>sample string 1</UserResponseToken> </CaptchaBindingModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
True/False
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>