POST api/Lookups/GetShareWithDoctor

Request Information

URI Parameters

None.

Body Parameters

RequestBase
NameDescriptionTypeAdditional information
PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientID": "15315c5d-2ec2-4024-8f74-f2305e3441e5",
  "WebApiVersion": 2,
  "Language": "sample string 3"
}

application/xml, text/xml

Sample:
<RequestBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <Language>sample string 3</Language>
  <PatientID>15315c5d-2ec2-4024-8f74-f2305e3441e5</PatientID>
  <WebApiVersion>2</WebApiVersion>
</RequestBase>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DoctorShareResponse
NameDescriptionTypeAdditional information
DoctorList

Collection of ShareDoctor

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "DoctorList": [
    {
      "DoctorID": "87d128db-f1ed-4fd1-946d-dc339add0ef2",
      "FirstName": "sample string 2",
      "LastName": "sample string 3"
    },
    {
      "DoctorID": "87d128db-f1ed-4fd1-946d-dc339add0ef2",
      "FirstName": "sample string 2",
      "LastName": "sample string 3"
    }
  ],
  "WebApiVersion": 1
}

application/xml, text/xml

Sample:
<DoctorShareResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <WebApiVersion>1</WebApiVersion>
  <DoctorList>
    <ShareDoctor>
      <DoctorID>87d128db-f1ed-4fd1-946d-dc339add0ef2</DoctorID>
      <FirstName>sample string 2</FirstName>
      <LastName>sample string 3</LastName>
    </ShareDoctor>
    <ShareDoctor>
      <DoctorID>87d128db-f1ed-4fd1-946d-dc339add0ef2</DoctorID>
      <FirstName>sample string 2</FirstName>
      <LastName>sample string 3</LastName>
    </ShareDoctor>
  </DoctorList>
</DoctorShareResponse>