POST api/hospital/select/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
HospitalClass| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| HOSPITAL | string |
None. |
|
| IS_INACTIVE | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"HOSPITAL": "sample string 2",
"IS_INACTIVE": true
}
application/xml, text/xml
Sample:
<HospitalClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VEZTA.Models"> <HOSPITAL>sample string 2</HOSPITAL> <ID>1</ID> <IS_INACTIVE>true</IS_INACTIVE> </HospitalClass>