POST api/BasicAPI/CheckInOut

Request Information

URI Parameters

None.

Body Parameters

AddCheckInOutRequest
NameDescriptionTypeAdditional information
MRId

string

None.

DoctorId

string

None.

Type

string

None.

Latitude

string

None.

Longitude

string

None.

Request Formats

application/json, text/json

Sample:
{
  "MRId": "sample string 1",
  "DoctorId": "sample string 2",
  "Type": "sample string 3",
  "Latitude": "sample string 4",
  "Longitude": "sample string 5"
}

application/xml, text/xml

Sample:
<AddCheckInOutRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MR16042022.ContextModel.Request">
  <DoctorId>sample string 2</DoctorId>
  <Latitude>sample string 4</Latitude>
  <Longitude>sample string 5</Longitude>
  <MRId>sample string 1</MRId>
  <Type>sample string 3</Type>
</AddCheckInOutRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AddCheckInOutResponse
NameDescriptionTypeAdditional information
Data

DataOfCheckIn

None.

ReturnCode

string

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": {
    "Id": "sample string 1"
  },
  "ReturnCode": "sample string 1",
  "Description": "sample string 2"
}

application/xml, text/xml

Sample:
<AddCheckInOutResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MR16042022.ContextModel.Response">
  <Description xmlns="http://schemas.datacontract.org/2004/07/MR16042022.ContextModel">sample string 2</Description>
  <ReturnCode xmlns="http://schemas.datacontract.org/2004/07/MR16042022.ContextModel">sample string 1</ReturnCode>
  <Data>
    <Id>sample string 1</Id>
  </Data>
</AddCheckInOutResponse>