PUT api/appointments/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

AppointmentUpsertDto
NameDescriptionTypeAdditional information
doctor_id

integer

None.

appointment_at

date

None.

duration_min

integer

None.

patient_name

string

None.

phone

string

None.

status

string

None.

notes

string

None.

Request Formats

application/json, text/json

Sample:
{
  "doctor_id": 1,
  "appointment_at": "2026-01-25T03:39:10.6696917-08:00",
  "duration_min": 3,
  "patient_name": "sample string 4",
  "phone": "sample string 5",
  "status": "sample string 6",
  "notes": "sample string 7"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.