POST api/Patient/PatientDoctorUpdate

Request Information

URI Parameters

None.

Body Parameters

PatientDoctorUpdateRequest
NameDescriptionTypeAdditional information
PatientDoctor

PatientDoctor

None.

PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientDoctor": {
    "PatientDoctorID": "0c574a15-09c7-4513-83f0-09ed3311220a",
    "DoctorSpecialtyID": "96d9e1a4-36f9-4a69-a2ab-fb4c1c87f00f",
    "Name": "sample string 2",
    "InstitutionName": "sample string 3",
    "Address": "sample string 4",
    "PhoneSMS": "sample string 5",
    "WhatsApp": "sample string 6",
    "Email": "sample string 7",
    "Website": "sample string 8",
    "WorkingHours": "sample string 9",
    "AssistantName": "sample string 10",
    "OtherInfo": "sample string 11",
    "Notes": "sample string 12"
  },
  "PatientID": "26489640-2162-46fb-8926-408e77787fd9",
  "WebApiVersion": 2,
  "Language": "sample string 3"
}

application/xml, text/xml

Sample:
<PatientDoctorUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <Language>sample string 3</Language>
  <PatientID>26489640-2162-46fb-8926-408e77787fd9</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientDoctor>
    <Address>sample string 4</Address>
    <AssistantName>sample string 10</AssistantName>
    <DoctorSpecialtyID>96d9e1a4-36f9-4a69-a2ab-fb4c1c87f00f</DoctorSpecialtyID>
    <Email>sample string 7</Email>
    <InstitutionName>sample string 3</InstitutionName>
    <Name>sample string 2</Name>
    <Notes>sample string 12</Notes>
    <OtherInfo>sample string 11</OtherInfo>
    <PatientDoctorID>0c574a15-09c7-4513-83f0-09ed3311220a</PatientDoctorID>
    <PhoneSMS>sample string 5</PhoneSMS>
    <Website>sample string 8</Website>
    <WhatsApp>sample string 6</WhatsApp>
    <WorkingHours>sample string 9</WorkingHours>
  </PatientDoctor>
</PatientDoctorUpdateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PatientDoctorResponse
NameDescriptionTypeAdditional information
PatientDoctor

PatientDoctor

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PatientDoctor": {
    "PatientDoctorID": "a3b38344-e47a-49cd-88c5-22c536effa43",
    "DoctorSpecialtyID": "f24d7a40-e2e3-4763-80a5-7678efedd2d7",
    "Name": "sample string 2",
    "InstitutionName": "sample string 3",
    "Address": "sample string 4",
    "PhoneSMS": "sample string 5",
    "WhatsApp": "sample string 6",
    "Email": "sample string 7",
    "Website": "sample string 8",
    "WorkingHours": "sample string 9",
    "AssistantName": "sample string 10",
    "OtherInfo": "sample string 11",
    "Notes": "sample string 12"
  },
  "WebApiVersion": 1
}

application/xml, text/xml

Sample:
<PatientDoctorResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <WebApiVersion>1</WebApiVersion>
  <PatientDoctor>
    <Address>sample string 4</Address>
    <AssistantName>sample string 10</AssistantName>
    <DoctorSpecialtyID>f24d7a40-e2e3-4763-80a5-7678efedd2d7</DoctorSpecialtyID>
    <Email>sample string 7</Email>
    <InstitutionName>sample string 3</InstitutionName>
    <Name>sample string 2</Name>
    <Notes>sample string 12</Notes>
    <OtherInfo>sample string 11</OtherInfo>
    <PatientDoctorID>a3b38344-e47a-49cd-88c5-22c536effa43</PatientDoctorID>
    <PhoneSMS>sample string 5</PhoneSMS>
    <Website>sample string 8</Website>
    <WhatsApp>sample string 6</WhatsApp>
    <WorkingHours>sample string 9</WorkingHours>
  </PatientDoctor>
</PatientDoctorResponse>