POST Client/LanguageForService

Return the list of languages for service based on the person's language skills and location

Request Information

URI Parameters

None.

Body Parameters

ParaGeoLocation
NameDescriptionTypeAdditional 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 ResultLanguage
NameDescriptionTypeAdditional 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>