POST api/Information/UpdateCaptcha
Request Information
URI Parameters
None.
Body Parameters
UpdateCaptchaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Token | string |
Required |
|
| JSessionId | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"Token": "sample string 1",
"JSessionId": "sample string 2"
}
application/xml, text/xml
Sample:
<UpdateCaptchaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GosRegService.UL.BLL.DTO"> <JSessionId>sample string 2</JSessionId> <Token>sample string 1</Token> </UpdateCaptchaDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CaptchaUpdateResultDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Captcha | string |
None. |
|
| CaptchaIdentifier | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Captcha": "sample string 1",
"CaptchaIdentifier": "sample string 2"
}
application/xml, text/xml
Sample:
<CaptchaUpdateResultDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GosRegService.UL.BLL.DTO"> <Captcha>sample string 1</Captcha> <CaptchaIdentifier>sample string 2</CaptchaIdentifier> </CaptchaUpdateResultDto>