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": "ca8d6172-413f-4453-b963-1af87679e0fc",
    "AppointmentTypeID": "402f3c2d-0533-44a2-9507-e07196daec6c",
    "PatientDoctorID": "6062abd2-21e4-4f07-b92f-adad1baa1e2d",
    "PatientPharmacyID": "21998680-3fba-47aa-beba-ad0b097a0793",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2026-08-12T11:43:56.2400021+03:00",
    "NotifyBefore": 1,
    "Notes": "sample string 4"
  },
  "PatientID": "26115e60-9168-4a86-9f78-9b7c6a2ecb93",
  "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>26115e60-9168-4a86-9f78-9b7c6a2ecb93</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientAppointment>
    <AppointmentTime>2026-08-12T11:43:56.2400021+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>402f3c2d-0533-44a2-9507-e07196daec6c</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>ca8d6172-413f-4453-b963-1af87679e0fc</PatientAppointmentID>
    <PatientDoctorID>6062abd2-21e4-4f07-b92f-adad1baa1e2d</PatientDoctorID>
    <PatientPharmacyID>21998680-3fba-47aa-beba-ad0b097a0793</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": "05a05bff-e12e-46ea-98d8-2f8e7a702392",
    "AppointmentTypeID": "b5495f41-c22b-474b-ad31-1d1e23e51a9c",
    "PatientDoctorID": "f3998d3b-d9e7-4e18-8559-eade6c6c5a2f",
    "PatientPharmacyID": "9baa9e2f-30d5-47a4-aa82-37e139254bc7",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2026-08-12T11:43:56.2400021+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-08-12T11:43:56.2400021+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>b5495f41-c22b-474b-ad31-1d1e23e51a9c</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>05a05bff-e12e-46ea-98d8-2f8e7a702392</PatientAppointmentID>
    <PatientDoctorID>f3998d3b-d9e7-4e18-8559-eade6c6c5a2f</PatientDoctorID>
    <PatientPharmacyID>9baa9e2f-30d5-47a4-aa82-37e139254bc7</PatientPharmacyID>
  </PatientAppointment>
</PatientAppointmentResponse>