GET api/v1/lookup/specialities/{languageId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| languageId | integer |
Default value is 6 |
Body Parameters
None.
Response Information
Resource Description
Collection of SpecialityResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Value | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"value": "sample string 2"
},
{
"id": 1,
"value": "sample string 2"
}
]
text/xml
Sample:
<ArrayOfSpecialityResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity">
<SpecialityResponse>
<Id>1</Id>
<Value>sample string 2</Value>
</SpecialityResponse>
<SpecialityResponse>
<Id>1</Id>
<Value>sample string 2</Value>
</SpecialityResponse>
</ArrayOfSpecialityResponse>