GET appointments/fee-detail?paymentGatewayID={paymentGatewayID}&patientEMR={patientEMR}&doctorClinicId={doctorClinicId}&timeSlot={timeSlot}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paymentGatewayID

globally unique identifier

Required

patientEMR

string

Required

doctorClinicId

globally unique identifier

Required

timeSlot

string

Required

Body Parameters

None.

Response Information

Resource Description

ResultOfString
NameDescriptionTypeAdditional information
Data

string

None.

Messages

Collection of string

None.

Succeeded

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": "sample string 1",
  "Messages": [
    "sample string 1",
    "sample string 2"
  ],
  "Succeeded": true
}

application/xml, text/xml

Sample:
<ResultOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZoeLife.Shared.Wrapper">
  <Messages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Messages>
  <Succeeded>true</Succeeded>
  <Data>sample string 1</Data>
</ResultOfstring>