GET api/ShowOPD/GetPtDetailsDr/{DrId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
DrId

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ShowOPD
NameDescriptionTypeAdditional information
Id

decimal number

None.

RegNo

string

String length: inclusive between 0 and 20

PatientName

string

String length: inclusive between 0 and 1051

UHIDNO

string

String length: inclusive between 0 and 50

Phone

string

String length: inclusive between 0 and 15

RegDate

date

None.

Age

string

String length: inclusive between 0 and 50

DoctorId

string

String length: inclusive between 0 and 20

GuardianName

string

String length: inclusive between 0 and 500

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1.0,
    "RegNo": "sample string 2",
    "PatientName": "sample string 3",
    "UHIDNO": "sample string 4",
    "Phone": "sample string 5",
    "RegDate": "2025-12-21T15:30:56.765843+05:30",
    "Age": "sample string 6",
    "DoctorId": "sample string 7",
    "GuardianName": "sample string 8"
  },
  {
    "Id": 1.0,
    "RegNo": "sample string 2",
    "PatientName": "sample string 3",
    "UHIDNO": "sample string 4",
    "Phone": "sample string 5",
    "RegDate": "2025-12-21T15:30:56.765843+05:30",
    "Age": "sample string 6",
    "DoctorId": "sample string 7",
    "GuardianName": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfShowOPD xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PolyClinicAPI.Models">
  <ShowOPD>
    <Age>sample string 6</Age>
    <DoctorId>sample string 7</DoctorId>
    <GuardianName>sample string 8</GuardianName>
    <Id>1</Id>
    <PatientName>sample string 3</PatientName>
    <Phone>sample string 5</Phone>
    <RegDate>2025-12-21T15:30:56.765843+05:30</RegDate>
    <RegNo>sample string 2</RegNo>
    <UHIDNO>sample string 4</UHIDNO>
  </ShowOPD>
  <ShowOPD>
    <Age>sample string 6</Age>
    <DoctorId>sample string 7</DoctorId>
    <GuardianName>sample string 8</GuardianName>
    <Id>1</Id>
    <PatientName>sample string 3</PatientName>
    <Phone>sample string 5</Phone>
    <RegDate>2025-12-21T15:30:56.765843+05:30</RegDate>
    <RegNo>sample string 2</RegNo>
    <UHIDNO>sample string 4</UHIDNO>
  </ShowOPD>
</ArrayOfShowOPD>