POST Client/LSP/SourceLanguage
Return the list of source languages for service for an LSP request
Request Information
URI Parameters
None.
Body Parameters
ParaGeoLocationName | Description | Type | Additional information |
---|---|---|---|
coords | ParaCoordinate |
None. |
|
CountryCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "coords": { "latitude": "sample string 1", "longitude": "sample string 2", "altitude": "sample string 3", "accuracy": "sample string 4", "altitudeAccuracy": "sample string 5", "heading": "sample string 6", "speed": "sample string 7" }, "CountryCode": "sample string 1" }
application/xml, text/xml
Sample:
<ParaGeoLocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <CountryCode>sample string 1</CountryCode> <coords> <accuracy>sample string 4</accuracy> <altitude>sample string 3</altitude> <altitudeAccuracy>sample string 5</altitudeAccuracy> <heading>sample string 6</heading> <latitude>sample string 1</latitude> <longitude>sample string 2</longitude> <speed>sample string 7</speed> </coords> </ParaGeoLocation>
Response Information
Resource Description
Collection of ResultLanguageName | Description | Type | Additional information |
---|---|---|---|
LanguageId | integer |
None. |
|
LanguageName | string |
None. |
|
SystemLanguageId | integer |
None. |
|
Available | boolean |
None. |
|
SortCode | string |
None. |
|
AdditionalOptionEnabled | boolean |
None. |
|
Message | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "LanguageId": 1, "LanguageName": "sample string 2", "SystemLanguageId": 3, "Available": true, "SortCode": "sample string 5", "AdditionalOptionEnabled": true, "Message": "sample string 6" }, { "LanguageId": 1, "LanguageName": "sample string 2", "SystemLanguageId": 3, "Available": true, "SortCode": "sample string 5", "AdditionalOptionEnabled": true, "Message": "sample string 6" } ]
application/xml, text/xml
Sample:
<ArrayOfResultLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <ResultLanguage> <AdditionalOptionEnabled>true</AdditionalOptionEnabled> <Available>true</Available> <LanguageId>1</LanguageId> <LanguageName>sample string 2</LanguageName> <Message>sample string 6</Message> <SortCode>sample string 5</SortCode> <SystemLanguageId>3</SystemLanguageId> </ResultLanguage> <ResultLanguage> <AdditionalOptionEnabled>true</AdditionalOptionEnabled> <Available>true</Available> <LanguageId>1</LanguageId> <LanguageName>sample string 2</LanguageName> <Message>sample string 6</Message> <SortCode>sample string 5</SortCode> <SystemLanguageId>3</SystemLanguageId> </ResultLanguage> </ArrayOfResultLanguage>