POST confirmplus/consolidated/SpellCheck
Request Information
URI Parameters
None.
Body Parameters
SpellCheckJsonData| Name | Description | Type | Additional information |
|---|---|---|---|
| LanguageID | integer |
None. |
|
| TexttoCheck | string |
None. |
|
| CheckSpelling | boolean |
None. |
|
| CheckSuggestion | boolean |
None. |
|
| AddWord | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"LanguageID": 1,
"TexttoCheck": "sample string 2",
"CheckSpelling": true,
"CheckSuggestion": true,
"AddWord": true
}
application/xml, text/xml
Sample:
<SpellCheckJsonData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Icodex.ConfirmPlusWordEditor.Controllers"> <AddWord>true</AddWord> <CheckSpelling>true</CheckSpelling> <CheckSuggestion>true</CheckSuggestion> <LanguageID>1</LanguageID> <TexttoCheck>sample string 2</TexttoCheck> </SpellCheckJsonData>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |