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": "b418be4b-921d-411a-9558-e24e08637f79",
    "AppointmentTypeID": "6b89af1e-456a-44ef-af80-62b49ddb0f49",
    "PatientDoctorID": "630316c1-3e84-4657-96ed-22fa7bc985ed",
    "PatientPharmacyID": "d8e8c8e9-69b5-49d5-8999-c6858189764f",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2025-12-11T14:39:34.4360372+03:00",
    "NotifyBefore": 1,
    "Notes": "sample string 4"
  },
  "PatientID": "33904011-f7e2-4ead-be44-6d6564294421",
  "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>33904011-f7e2-4ead-be44-6d6564294421</PatientID>
  <WebApiVersion>2</WebApiVersion>
  <PatientAppointment>
    <AppointmentTime>2025-12-11T14:39:34.4360372+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>6b89af1e-456a-44ef-af80-62b49ddb0f49</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>b418be4b-921d-411a-9558-e24e08637f79</PatientAppointmentID>
    <PatientDoctorID>630316c1-3e84-4657-96ed-22fa7bc985ed</PatientDoctorID>
    <PatientPharmacyID>d8e8c8e9-69b5-49d5-8999-c6858189764f</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": "0c10e729-df9f-4cee-8f38-467bd9cf7e3b",
    "AppointmentTypeID": "dce29878-ce7d-45c6-9797-75f384418bed",
    "PatientDoctorID": "486050d5-3a6f-4335-b858-740131b0c06d",
    "PatientPharmacyID": "09769317-e3db-4e3f-9d96-6071f2b00823",
    "AppointmentTitle": "sample string 2",
    "AppointmentWith": "sample string 3",
    "AppointmentTime": "2025-12-11T14:39:34.4360372+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>2025-12-11T14:39:34.4360372+03:00</AppointmentTime>
    <AppointmentTitle>sample string 2</AppointmentTitle>
    <AppointmentTypeID>dce29878-ce7d-45c6-9797-75f384418bed</AppointmentTypeID>
    <AppointmentWith>sample string 3</AppointmentWith>
    <Notes>sample string 4</Notes>
    <NotifyBefore>1</NotifyBefore>
    <PatientAppointmentID>0c10e729-df9f-4cee-8f38-467bd9cf7e3b</PatientAppointmentID>
    <PatientDoctorID>486050d5-3a6f-4335-b858-740131b0c06d</PatientDoctorID>
    <PatientPharmacyID>09769317-e3db-4e3f-9d96-6071f2b00823</PatientPharmacyID>
  </PatientAppointment>
</PatientAppointmentResponse>