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": "bc3de002-3040-4100-a1ce-e3bdb0e6c68b",
    "AppointmentTypeID": "8ea261e1-4200-45af-b90a-068ad6441f34",
    "PatientDoctorID": "66077736-9e4b-4341-bbd6-90a4ca98e5ac",
    "PatientPharmacyID": "6778f78b-b5e3-45ae-819e-80f1d3213241",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2026-06-18T12:14:57.1835173+03:00",
    "NotifyBefore": 1,
    "Notes": "sample string 4"
  },
  "PatientID": "31c8069a-b9a7-44b8-91d7-fa069e68ba79",
  "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>31c8069a-b9a7-44b8-91d7-fa069e68ba79</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientAppointment>
    <AppointmentTime>2026-06-18T12:14:57.1835173+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>8ea261e1-4200-45af-b90a-068ad6441f34</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>bc3de002-3040-4100-a1ce-e3bdb0e6c68b</PatientAppointmentID>
    <PatientDoctorID>66077736-9e4b-4341-bbd6-90a4ca98e5ac</PatientDoctorID>
    <PatientPharmacyID>6778f78b-b5e3-45ae-819e-80f1d3213241</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": "a67bd13e-fd25-48a2-ae05-969865910769",
    "AppointmentTypeID": "a243783f-6ca0-4f14-aa68-9957075ccb66",
    "PatientDoctorID": "5c2085bd-f93a-4a8c-8e78-7661dafba557",
    "PatientPharmacyID": "4be5a346-acd5-4d71-9f9e-d2e2a5ab7a73",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2026-06-18T12:14:57.1991525+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-06-18T12:14:57.1991525+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>a243783f-6ca0-4f14-aa68-9957075ccb66</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>a67bd13e-fd25-48a2-ae05-969865910769</PatientAppointmentID>
    <PatientDoctorID>5c2085bd-f93a-4a8c-8e78-7661dafba557</PatientDoctorID>
    <PatientPharmacyID>4be5a346-acd5-4d71-9f9e-d2e2a5ab7a73</PatientPharmacyID>
  </PatientAppointment>
</PatientAppointmentResponse>