PUT api/appointments/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
AppointmentUpsertDto| Name | Description | Type | Additional 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
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.