GET Translation/Get?apiKey={apiKey}&text={text}&from={from}&to={to}
Documentation for 'Get'.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| apiKey | Documentation for 'apiKey'. |
Define this parameter in the request URI. |
| text | Documentation for 'text'. |
Define this parameter in the request URI. |
| from | Documentation for 'from'. |
Define this parameter in the request URI. |
| to | Documentation for 'to'. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Validation": {
"isSuccess": true,
"Message": "sample string 2"
},
"Translation": "sample string 1"
}
application/xml, text/xml
Sample:
<dtoTranslate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CCModel">
<Translation>sample string 1</Translation>
<Validation>
<Message>sample string 2</Message>
<isSuccess>true</isSuccess>
</Validation>
</dtoTranslate>