GET Client/Language
Get the list of languages for the Client
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ResultPersonLanguage| Name | Description | Type | Additional information |
|---|---|---|---|
| LanguageId | integer |
None. |
|
| LanguageName | string |
None. |
|
| ProficiencyCodeId | integer |
None. |
|
| Proficiency | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"LanguageId": 1,
"LanguageName": "sample string 2",
"ProficiencyCodeId": 3,
"Proficiency": "sample string 4"
},
{
"LanguageId": 1,
"LanguageName": "sample string 2",
"ProficiencyCodeId": 3,
"Proficiency": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfResultPersonLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models">
<ResultPersonLanguage>
<LanguageId>1</LanguageId>
<LanguageName>sample string 2</LanguageName>
<Proficiency>sample string 4</Proficiency>
<ProficiencyCodeId>3</ProficiencyCodeId>
</ResultPersonLanguage>
<ResultPersonLanguage>
<LanguageId>1</LanguageId>
<LanguageName>sample string 2</LanguageName>
<Proficiency>sample string 4</Proficiency>
<ProficiencyCodeId>3</ProficiencyCodeId>
</ResultPersonLanguage>
</ArrayOfResultPersonLanguage>