

| Parameter | Description |
| rService |
Requested service. (txp=Text Processing)
Value = 'txp' |
| rType |
Requested service type. (spc=Markup Cleaner)
Value = 'mkc' |
| authWSControlKey | The authWSControlKey is an hash key calculated on the submitted data. It is used to verify authorization to use the web service and to verify data integrity. |
| publicAccessID | The PublicAccessID key is used to identify both user and application. The platform uses an hash based verification system to check the data integrity and the user identity. |
| pText |
Text that needs to be cleaned.
Example: pText = '<br/>This is an example<br/>' |
| pType |
Markup Cleaning Type
plain: Returns the cleaned text as a whole. cluster: Returns the cleaned text as clusters. (pSens can be used to regulate the cluster sensibility). Values: 'plain' = Plain Cleaning 'cluster' = Cluster Cleaning |
| pSens |
pSens regulates the cluster sensibility.
Values: '0' = Min '15' = Max |
<?xml version="1.0" encoding="UTF-8"?>
<response>
<results>
<text>
The Artificial Intelligence can be really useful in Business Intelligence
and in many other contexts
</text>
</results>
</response>
<?xml version="1.0" encoding="UTF-8"?>
<response>
<results>
<cluster>Text item 1</cluster>
<cluster>Text item 2 and three</cluster>
</results>
</response>