POST api/Patient/Upload/Wound
Request Information
URI Parameters
None.
Body Parameters
PatientWoundImageViewModelName | Description | Type | Additional information |
---|---|---|---|
PatientID | integer |
None. |
|
ImageName | string |
Required String length: inclusive between 0 and 25 |
|
ImagePath | string |
Required String length: inclusive between 0 and 500 |
|
IsWoundPhotoNotified | boolean |
None. |
|
PatientNotes | string |
None. |
|
ExifOrientation | string |
None. |
|
UpdatedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "PatientID": 1, "ImageName": "sample string 2", "ImagePath": "sample string 3", "IsWoundPhotoNotified": true, "PatientNotes": "sample string 5", "ExifOrientation": "sample string 6", "UpdatedDate": "2025-05-17T20:17:21.1406959+00:00" }
application/xml, text/xml
Sample:
<PatientWoundImageViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Services.ViewModels.PatientsViewModels"> <ExifOrientation>sample string 6</ExifOrientation> <ImageName>sample string 2</ImageName> <ImagePath>sample string 3</ImagePath> <IsWoundPhotoNotified>true</IsWoundPhotoNotified> <PatientID>1</PatientID> <PatientNotes>sample string 5</PatientNotes> <UpdatedDate>2025-05-17T20:17:21.1406959+00:00</UpdatedDate> </PatientWoundImageViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ActionResultViewModelOfStringName | Description | Type | Additional information |
---|---|---|---|
StatusCode | integer |
None. |
|
Success | boolean |
None. |
|
Message | string |
None. |
|
Result | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "StatusCode": 1, "Success": true, "Message": "sample string 3", "Result": "sample string 4" }
application/xml, text/xml
Sample:
<ActionResultViewModelOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Web.ViewModels.ResultViewModels"> <Message>sample string 3</Message> <Result>sample string 4</Result> <StatusCode>1</StatusCode> <Success>true</Success> </ActionResultViewModelOfstring>