POST

api/v1/GetPatientDetails/{timeoffset}/{pageNumber}/{pageSize}/{sortColumn}/{sortOrder}

Fetch all the patient details

Request Information

URI Parameters

NameDescriptionTypeAdditional information
timeoffset

Timeoffset details

string

Required

pageNumber

No of page to be displayed

integer

Required

pageSize

Size of the page

integer

Required

sortColumn

Column name for sorting

string

Required

sortOrder

Order for sorting

string

Required

Body Parameters

Patientparams model details

Patientparams
NameDescriptionTypeAdditional information
LoginUserId

Login userId

string

None.

PatientId

User selected PatientId

integer

None.

MrnNumber

Patient's MrnNumber

string

None.

PatientName

Patient's PatientName

string

None.

ActiveSchedule

ActiveSchedule

boolean

None.

ActivePatient

ActivePatient

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "LoginUserId": "string",
  "PatientId": 0,
  "MrnNumber": "string",
  "PatientName": "string",
  "ActiveSchedule": true,
  "ActivePatient": true
}

application/xml, text/xml

Sample:
<Patientparams xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mayo_WebAPI.Dtos">
  <ActivePatient>true</ActivePatient>
  <ActiveSchedule>true</ActiveSchedule>
  <LoginUserId>string</LoginUserId>
  <MrnNumber>string</MrnNumber>
  <PatientId>0</PatientId>
  <PatientName>string</PatientName>
</Patientparams>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.