POST api/Register/CaptchaData
Request Information
URI Parameters
None.
Body Parameters
CaptchaModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PossibleImageOptions | Dictionary of string [key] and string [value] |
None. |
|
| ValidImageOption | Pair of string [key] and string [value] |
None. |
|
| ValidAudioOption | Pair of string [key] and string [value] |
None. |
Request Formats
application/json, text/json
Sample:
{
"possibleImageOptions": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"validImageOption": {
"key": "sample string 1",
"value": "sample string 2"
},
"validAudioOption": {
"key": "sample string 1",
"value": "sample string 2"
}
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
FrontEndDataModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Values | Collection of string |
None. |
|
| ImageName | string |
None. |
|
| ImageFieldName | string |
None. |
|
| AudioFieldName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"values": [
"sample string 1",
"sample string 2"
],
"imageName": "sample string 1",
"imageFieldName": "sample string 2",
"audioFieldName": "sample string 3"
}
application/xml, text/xml
Sample:
<FrontEndDataModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Values>
<string>sample string 1</string>
<string>sample string 2</string>
</Values>
<ImageName>sample string 1</ImageName>
<ImageFieldName>sample string 2</ImageFieldName>
<AudioFieldName>sample string 3</AudioFieldName>
</FrontEndDataModel>