POST api/appointment/add
Request Information
URI Parameters
None.
Body Parameters
AppointmentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| appointment_id | globally unique identifier |
None. |
|
| patient_id | globally unique identifier |
None. |
|
| subject_txt | string |
None. |
|
| reason_txt | string |
None. |
|
| duration_val | integer |
None. |
|
| note_txt | string |
None. |
|
| resource_ids | string |
None. |
|
| exam_id | integer |
None. |
|
| status_txt | string |
None. |
|
| template_ind | boolean |
None. |
|
| created_dt | date |
None. |
|
| created_by | integer |
None. |
|
| updated_dt | date |
None. |
|
| updated_by | integer |
None. |
|
| patient_txt | string |
None. |
|
| appointment_type_txt | string |
None. |
|
| original_starttime_dt | date |
None. |
|
| original_endtime_dt | date |
None. |
|
| starttime_txt | string |
None. |
|
| endtime_txt | string |
None. |
|
| master_appointment_id | globally unique identifier |
None. |
|
| time_zone | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"appointment_id": "041aa087-c2bf-4a3a-a439-1f13788753f7",
"patient_id": "55fde0df-6d4b-4a74-8e84-1c2b5809beaf",
"subject_txt": "sample string 3",
"reason_txt": "sample string 4",
"duration_val": 5,
"note_txt": "sample string 6",
"resource_ids": "sample string 7",
"exam_id": 8,
"status_txt": "sample string 9",
"template_ind": true,
"created_dt": "2026-02-04T02:51:08.1636737+00:00",
"created_by": 12,
"updated_dt": "2026-02-04T02:51:08.1636737+00:00",
"updated_by": 14,
"patient_txt": "sample string 15",
"appointment_type_txt": "sample string 16",
"original_starttime_dt": "2026-02-04T02:51:08.1636737+00:00",
"original_endtime_dt": "2026-02-04T02:51:08.1636737+00:00",
"starttime_txt": "sample string 19",
"endtime_txt": "sample string 20",
"master_appointment_id": "fd3c8839-7948-4608-9f14-46b7b73f3f62",
"time_zone": 21
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |