GET api/Provider/Patient/WoundImages?patientID={patientID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| patientID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ActionResultViewModelOfIEnumerableOfWoundImageViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| StatusCode | integer |
None. |
|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Result | Collection of WoundImageViewModel |
None. |
Response Formats
application/json, text/json
Sample:
{
"StatusCode": 1,
"Success": true,
"Message": "sample string 3",
"Result": [
{
"ImagePath": "sample string 1",
"UpdatedDateTime": "2025-10-26T03:50:38.3729129+00:00"
},
{
"ImagePath": "sample string 1",
"UpdatedDateTime": "2025-10-26T03:50:38.3729129+00:00"
}
]
}
application/xml, text/xml
Sample:
<ActionResultViewModelOfArrayOfWoundImageViewModel9WakHX_Pk 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 xmlns:d2p1="http://schemas.datacontract.org/2004/07/Consensus.Ortho.Services.ViewModels.PatientsViewModels">
<d2p1:WoundImageViewModel>
<d2p1:ImagePath>sample string 1</d2p1:ImagePath>
<d2p1:UpdatedDateTime>2025-10-26T03:50:38.3729129+00:00</d2p1:UpdatedDateTime>
</d2p1:WoundImageViewModel>
<d2p1:WoundImageViewModel>
<d2p1:ImagePath>sample string 1</d2p1:ImagePath>
<d2p1:UpdatedDateTime>2025-10-26T03:50:38.3729129+00:00</d2p1:UpdatedDateTime>
</d2p1:WoundImageViewModel>
</Result>
<StatusCode>1</StatusCode>
<Success>true</Success>
</ActionResultViewModelOfArrayOfWoundImageViewModel9WakHX_Pk>