GET api/MfImageUploads
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of 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:41:16.8741378+00:00",
"DriverLong": 5.1,
"DriverLat": 6.1,
"CapturedAt": "2026-03-20T16:41:16.8741378+00:00",
"Notes": "sample string 8"
},
{
"Id": 1,
"UserId": "sample string 2",
"ContentType": "sample string 3",
"ImageData": "QEA=",
"UploadedAt": "2026-03-20T16:41:16.8741378+00:00",
"DriverLong": 5.1,
"DriverLat": 6.1,
"CapturedAt": "2026-03-20T16:41:16.8741378+00:00",
"Notes": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfMfImageUpload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BookService.Models">
<MfImageUpload>
<CapturedAt>2026-03-20T16:41:16.8741378+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:41:16.8741378+00:00</UploadedAt>
<UserId>sample string 2</UserId>
</MfImageUpload>
<MfImageUpload>
<CapturedAt>2026-03-20T16:41:16.8741378+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:41:16.8741378+00:00</UploadedAt>
<UserId>sample string 2</UserId>
</MfImageUpload>
</ArrayOfMfImageUpload>