Returns matches from text that you submit in the Text HTTP parameter.
http://localhost:13000/?action=EduceFromText&Text=Simon was getting ready to leave.
This action might result in output similar to the following XML:
<autnresponse>
<action>EDUCEFROMTEXT</action>
<response>SUCCESS</response>
<responsedata>
<autn:hit>
<entity_name>contact/people</entity_name>
<offset>0</offset>
<offset_length>0</offset_length>
<score>1.00000</score>
<normalized_text_size>5</normalized_text_size>
<normalized_text_length>5</normalized_text_length>
<original_text_size>5</original_text_size>
<original_text_length>5</original_text_length>
<original_text>Simon</original_text>
<normalized_text>Simon</normalized_text>
</autn:hit>
<autn:numhits>1</autn:numhits>
</responsedata>
</autnresponse>
| Parameter | Description | Required |
|---|---|---|
| AllowMultipleResults | Whether to return multiple results for a single match. | No |
| AllowOverlaps | Whether to return more than one entity from any one section of text. | No |
| CaseNormalization | The case conversion to use for all incoming text. | No |
| CJKNormalization | How to normalize Chinese, Japanese, and Korean data before extraction. | No |
| EnableComponents | Whether to return all the components of the entity as well as the entity itself. | No |
| EnableUniqueMatches | Whether to return only unique matches in each document. | No |
| Entities | The entities to use for the extraction. | No |
| Grammars | The grammar files to use for the extraction. | No |
| Locale | Enables tokenization of Chinese, Japanese, Korean, and Thai languages. | No |
| MatchCase | Whether to ignore case when matching characters. | No |
| MatchTimeout | The maximum amount of time (in seconds) to spend searching for matches (to all chosen entities) at a specific offset. | No |
| MatchWholeWord | Whether to take account of word boundaries when matching. | No |
| MaxEntityLength | The maximum number of characters in a returned entry. | No |
| MinScore | Matches only items with scores equal to or exceeding the threshold. | No |
| NonGreedyMatch | Whether to return the shortest match. | No |
| RedactionOutputString | A string that replaces redacted information in the output text. | No |
| RedactionReplacementCharacter | A single character that replaces each character in redacted text. | No |
| RedactionType | Whether to replace a match with the normalized form of the text rather than a censored string or replacement character. | No |
| RequestTimeout | The maximum amount of time (in seconds) to spend processing the request. | No |
| TangibleCharacters | A list of punctuation characters to treat as part of the word. | No |
| Text | The input text to process. | Yes |
| TokenWithPunctuation | Whether to treat all punctuation characters as part of a word token, rather than treating them as word boundaries | No |
|
|