GET v1/Locations/{locationID}/Contacts/Languages
Get the list of languages
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| locationID |
Id of the location |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of languages
Collection of LanguageDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| LanguageID | integer |
None. |
|
| LanguageCode | string |
None. |
|
| Language1 | string |
None. |
|
| LocationID | 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>