POST api/Patient/PatientAppointmentUpdate

Request Information

URI Parameters

None.

Body Parameters

PatientAppointmentUpdateRequest
NameDescriptionTypeAdditional information
PatientAppointment

PatientAppointment

None.

PatientID

globally unique identifier

None.

WebApiVersion

integer

None.

Language

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientAppointment": {
    "PatientAppointmentID": "8f2abdc6-f0d5-421a-bf5c-d23b608b1e0d",
    "AppointmentTypeID": "962be9b0-1713-4362-bc77-4d177f6a229d",
    "PatientDoctorID": "055e3abf-fcd5-415f-839d-576e21ba7126",
    "PatientPharmacyID": "bfd8d340-4326-4bb3-aca4-a5a91bc28831",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2026-02-28T15:34:33.5141829+03:00",
    "NotifyBefore": 1,
    "Notes": "sample string 4"
  },
  "PatientID": "595377fc-fec6-4e0e-bb60-0559873e41bd",
  "WebApiVersion": 2,
  "Language": "sample string 3"
}

application/xml, text/xml

Sample:
<PatientAppointmentUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <Language>sample string 3</Language>
  <PatientID>595377fc-fec6-4e0e-bb60-0559873e41bd</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientAppointment>
    <AppointmentTime>2026-02-28T15:34:33.5141829+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>962be9b0-1713-4362-bc77-4d177f6a229d</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>8f2abdc6-f0d5-421a-bf5c-d23b608b1e0d</PatientAppointmentID>
    <PatientDoctorID>055e3abf-fcd5-415f-839d-576e21ba7126</PatientDoctorID>
    <PatientPharmacyID>bfd8d340-4326-4bb3-aca4-a5a91bc28831</PatientPharmacyID>
  </PatientAppointment>
</PatientAppointmentUpdateRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PatientAppointmentResponse
NameDescriptionTypeAdditional information
PatientAppointment

PatientAppointment

None.

WebApiVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PatientAppointment": {
    "PatientAppointmentID": "155a63cf-f885-49db-b185-93d1734b520a",
    "AppointmentTypeID": "582ff0ed-0ab0-4d33-aa31-e37c88b28b02",
    "PatientDoctorID": "392b3a5b-3d82-42f0-abbd-af0f9ba6c652",
    "PatientPharmacyID": "a4b57835-8f29-4401-8f95-cedee454fbcc",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2026-02-28T15:34:33.5141829+03:00",
    "NotifyBefore": 1,
    "Notes": "sample string 4"
  },
  "WebApiVersion": 1
}

application/xml, text/xml

Sample:
<PatientAppointmentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SehatukaAPI.DTO">
  <WebApiVersion>1</WebApiVersion>
  <PatientAppointment>
    <AppointmentTime>2026-02-28T15:34:33.5141829+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>582ff0ed-0ab0-4d33-aa31-e37c88b28b02</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>155a63cf-f885-49db-b185-93d1734b520a</PatientAppointmentID>
    <PatientDoctorID>392b3a5b-3d82-42f0-abbd-af0f9ba6c652</PatientDoctorID>
    <PatientPharmacyID>a4b57835-8f29-4401-8f95-cedee454fbcc</PatientPharmacyID>
  </PatientAppointment>
</PatientAppointmentResponse>