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": "96399501-47a2-4cd8-bcd3-32c798126a8c",
    "AppointmentTypeID": "7971e122-b969-4b0f-a1e2-77a90b4dfe83",
    "PatientDoctorID": "44e1ddd5-6192-4d31-a66f-5d6c79a4605d",
    "PatientPharmacyID": "12aed49a-e26e-47b0-87b5-c646b9848105",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2026-04-24T14:21:34.6898642+03:00",
    "NotifyBefore": 1,
    "Notes": "sample string 4"
  },
  "PatientID": "87edd077-a8e1-4256-93af-a23eca025741",
  "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>87edd077-a8e1-4256-93af-a23eca025741</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientAppointment>
    <AppointmentTime>2026-04-24T14:21:34.6898642+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>7971e122-b969-4b0f-a1e2-77a90b4dfe83</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>96399501-47a2-4cd8-bcd3-32c798126a8c</PatientAppointmentID>
    <PatientDoctorID>44e1ddd5-6192-4d31-a66f-5d6c79a4605d</PatientDoctorID>
    <PatientPharmacyID>12aed49a-e26e-47b0-87b5-c646b9848105</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": "36d1eb8d-e037-4eb8-855f-dbb7869d3b5f",
    "AppointmentTypeID": "bee75fc9-99bb-462b-8fe4-fcc7021a0bb2",
    "PatientDoctorID": "dbd45d32-2fb4-4d10-be32-33b370925d72",
    "PatientPharmacyID": "2d10c8b9-9216-4312-bd03-89d9765ba806",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2026-04-24T14:21:34.6898642+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-04-24T14:21:34.6898642+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>bee75fc9-99bb-462b-8fe4-fcc7021a0bb2</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>36d1eb8d-e037-4eb8-855f-dbb7869d3b5f</PatientAppointmentID>
    <PatientDoctorID>dbd45d32-2fb4-4d10-be32-33b370925d72</PatientDoctorID>
    <PatientPharmacyID>2d10c8b9-9216-4312-bd03-89d9765ba806</PatientPharmacyID>
  </PatientAppointment>
</PatientAppointmentResponse>