POST api/translate
Request Information
URI Parameters
None.
Body Parameters
TranslateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Text | string |
None. |
|
| SourceLang | string |
None. |
|
| TargetLang | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Text": "sample string 1",
"SourceLang": "sample string 2",
"TargetLang": "sample string 3"
}
application/xml, text/xml
Sample:
<TranslateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/unnanu_search_api.Models"> <SourceLang>sample string 2</SourceLang> <TargetLang>sample string 3</TargetLang> <Text>sample string 1</Text> </TranslateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.