DELETE api/MfImageUploads/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MfImageUpload| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| UserId | string |
Max length: 50 |
|
| ContentType | string |
None. |
|
| ImageData | Collection of byte |
None. |
|
| UploadedAt | date |
None. |
|
| DriverLong | decimal number |
None. |
|
| DriverLat | decimal number |
None. |
|
| CapturedAt | date |
None. |
|
| Notes | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"UserId": "sample string 2",
"ContentType": "sample string 3",
"ImageData": "QEA=",
"UploadedAt": "2026-03-20T16:44:38.4467859+00:00",
"DriverLong": 5.1,
"DriverLat": 6.1,
"CapturedAt": "2026-03-20T16:44:38.4467859+00:00",
"Notes": "sample string 8"
}
application/xml, text/xml
Sample:
<MfImageUpload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BookService.Models"> <CapturedAt>2026-03-20T16:44:38.4467859+00:00</CapturedAt> <ContentType>sample string 3</ContentType> <DriverLat>6.1</DriverLat> <DriverLong>5.1</DriverLong> <Id>1</Id> <ImageData>QEA=</ImageData> <Notes>sample string 8</Notes> <UploadedAt>2026-03-20T16:44:38.4467859+00:00</UploadedAt> <UserId>sample string 2</UserId> </MfImageUpload>