POST
api/v1/SavePatientAppointmentSummaryDetails
Save patient appointment summary details
Request Information
URI Parameters
None.
Body Parameters
PatientAppointmentSummeryModel| Name | Description | Type | Additional information |
|---|---|---|---|
| LoggedUserId |
LoggedUserId |
string |
None. |
| PatientID |
PatientID |
integer |
None. |
| AppointmentID |
AppointmentID |
integer |
None. |
| Notes |
Notes |
string |
None. |
| Status |
Status |
integer |
None. |
| FileInfo |
FileInfo |
Collection of FileInfo |
None. |
Request Formats
application/json, text/json
Sample:
{
"LoggedUserId": "string",
"PatientID": 0,
"AppointmentID": 0,
"Notes": "string",
"Status": 0,
"FileInfo": [
{
"FileName": "string",
"FilePath": "string"
},
{
"FileName": "string",
"FilePath": "string"
}
]
}
application/xml, text/xml
Sample:
<PatientAppointmentSummeryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mayo_WebAPI.Dtos">
<AppointmentID>0</AppointmentID>
<FileInfo>
<FileInfo>
<FileName>string</FileName>
<FilePath>string</FilePath>
</FileInfo>
<FileInfo>
<FileName>string</FileName>
<FilePath>string</FilePath>
</FileInfo>
</FileInfo>
<LoggedUserId>string</LoggedUserId>
<Notes>string</Notes>
<PatientID>0</PatientID>
<Status>0</Status>
</PatientAppointmentSummeryModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.