GET Services/GetServicesList?FromDate={FromDate}&ToDate={ToDate}&PatientName={PatientName}&CenterId={CenterId}&OrgId={OrgId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FromDate

date

None.

ToDate

date

None.

PatientName

string

None.

CenterId

integer

None.

OrgId

integer

None.

Body Parameters

None.

Response Information

Resource Description

Collection of USP_GET_MULTIORG_SERVICES_Result
NameDescriptionTypeAdditional information
Service_Id

integer

None.

Service_Charge_Id

integer

None.

Service_Name

string

None.

Normal_Cost

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Service_Id": 1,
    "Service_Charge_Id": 2,
    "Service_Name": "sample string 3",
    "Normal_Cost": 1.0
  },
  {
    "Service_Id": 1,
    "Service_Charge_Id": 2,
    "Service_Name": "sample string 3",
    "Normal_Cost": 1.0
  }
]

text/html

Sample:
[{"Service_Id":1,"Service_Charge_Id":2,"Service_Name":"sample string 3","Normal_Cost":1.0},{"Service_Id":1,"Service_Charge_Id":2,"Service_Name":"sample string 3","Normal_Cost":1.0}]

application/xml, text/xml

Sample:
<ArrayOfUSP_GET_MULTIORG_SERVICES_Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tm.WebAPI.Models">
  <USP_GET_MULTIORG_SERVICES_Result>
    <Normal_Cost>1</Normal_Cost>
    <Service_Charge_Id>2</Service_Charge_Id>
    <Service_Id>1</Service_Id>
    <Service_Name>sample string 3</Service_Name>
  </USP_GET_MULTIORG_SERVICES_Result>
  <USP_GET_MULTIORG_SERVICES_Result>
    <Normal_Cost>1</Normal_Cost>
    <Service_Charge_Id>2</Service_Charge_Id>
    <Service_Id>1</Service_Id>
    <Service_Name>sample string 3</Service_Name>
  </USP_GET_MULTIORG_SERVICES_Result>
</ArrayOfUSP_GET_MULTIORG_SERVICES_Result>