POST api/AppointmentsChat/SaveMessages
Request Information
URI Parameters
None.
Body Parameters
AppointmentMessageSaveDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| PatientAppointmentId | integer |
None. |
|
| Message | string |
None. |
|
| UserId | string |
None. |
|
| IsMyNameExist | boolean |
None. |
|
| RoleCode | string |
None. |
|
| ChartId | integer |
None. |
|
| ProviderId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"patientAppointmentId": 1,
"message": "sample string 2",
"userId": "sample string 3",
"isMyNameExist": true,
"roleCode": "sample string 4",
"chartId": 1,
"providerId": 5
}
application/xml, text/xml
Sample:
<AppointmentMessageSaveDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ScribingSoftware.Model.AppointmentsChat"> <ChartId>1</ChartId> <IsMyNameExist>true</IsMyNameExist> <Message>sample string 2</Message> <PatientAppointmentId>1</PatientAppointmentId> <ProviderId>5</ProviderId> <RoleCode>sample string 4</RoleCode> <UserId>sample string 3</UserId> </AppointmentMessageSaveDTO>
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. |