GET v1/Locations/{locationID}/Contacts/Languages

Get the list of languages

Request Information

URI Parameters

NameDescriptionTypeAdditional information
locationID

Id of the location

string

Required

Body Parameters

None.

Response Information

Resource Description

List of languages

Collection of LanguageDTO
NameDescriptionTypeAdditional information
LanguageID

Id of the language

integer

None.

LanguageCode

Language code

string

None.

Language1

Language 1

string

None.

LocationID

Id of the location

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "LanguageID": 1,
    "LanguageCode": "sample string 2",
    "Language1": "sample string 3",
    "LocationID": 1
  },
  {
    "LanguageID": 1,
    "LanguageCode": "sample string 2",
    "Language1": "sample string 3",
    "LocationID": 1
  }
]

application/xml, text/xml

Sample:
<ArrayOfLanguageDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Locations">
  <LanguageDTO>
    <Language1>sample string 3</Language1>
    <LanguageCode>sample string 2</LanguageCode>
    <LanguageID>1</LanguageID>
    <LocationID>1</LocationID>
  </LanguageDTO>
  <LanguageDTO>
    <Language1>sample string 3</Language1>
    <LanguageCode>sample string 2</LanguageCode>
    <LanguageID>1</LanguageID>
    <LocationID>1</LocationID>
  </LanguageDTO>
</ArrayOfLanguageDTO>