GET api/OutPatients/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
OutPatient| Name | Description | Type | Additional information |
|---|---|---|---|
| F_Id | integer |
None. |
|
| OP_Id | string |
None. |
|
| DOB | date |
None. |
|
| Name | string |
None. |
|
| Mobile_Number | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"F_Id": 1,
"OP_Id": "sample string 2",
"DOB": "2026-04-22T15:59:11.8718838+05:30",
"Name": "sample string 3",
"Mobile_Number": "sample string 4"
}
application/xml, text/xml
Sample:
<OutPatient xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Parihaar.Repositories.Core.Model"> <DOB>2026-04-22T15:59:11.8718838+05:30</DOB> <F_Id>1</F_Id> <Mobile_Number>sample string 4</Mobile_Number> <Name>sample string 3</Name> <OP_Id>sample string 2</OP_Id> </OutPatient>