PUT api/MfImageUploads/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

MfImageUpload
NameDescriptionTypeAdditional 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.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "UserId": "sample string 2",
  "ContentType": "sample string 3",
  "ImageData": "QEA=",
  "UploadedAt": "2026-03-20T16:46:07.7668584+00:00",
  "DriverLong": 5.1,
  "DriverLat": 6.1,
  "CapturedAt": "2026-03-20T16:46:07.7668584+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:46:07.7668584+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:46:07.7668584+00:00</UploadedAt>
  <UserId>sample string 2</UserId>
</MfImageUpload>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.