POST api/AuditImages/{uniqueIdentifier}
Posts an audit image.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| uniqueIdentifier |
The unique identifier of the associated audit. |
string |
Required |
Body Parameters
The image to post.
AuditImage| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The ID of the audit image. |
integer |
None. |
| AuditID |
The ID of the associated audit. |
integer |
None. |
| Image |
The raw image. |
Collection of byte |
None. |
| UniqueIdentifier |
The unique identifier of the audit image. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"AuditID": 2,
"Image": "QEA=",
"UniqueIdentifier": "sample string 3"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
A 200 status
IHttpActionResultNone.
Response Formats
application/json, text/json
Sample:
Sample not available.