POST api/image/{id}

Upload image data and metadata

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

Required

Body Parameters

Image
NameDescriptionTypeAdditional information
Name

File name

string

None.

ImageID

integer

None.

ImageName

string

None.

ImageExtension

string

None.

LastUpdate

date

None.

ImageData

Collection of byte

None.

ReadOnly

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "name": "sample string 3.sample string 4",
  "imageID": 2,
  "imageName": "sample string 3",
  "imageExtension": "sample string 4",
  "lastUpdate": "2025-06-14T06:08:00.7723075",
  "imageData": "QEA=",
  "readOnly": true
}

application/xml, text/xml

Sample:
<Image xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://gapsolutions.com.au/schema/ezimanager">
  <ImageData>QEA=</ImageData>
  <ImageExtension>sample string 4</ImageExtension>
  <ImageID>2</ImageID>
  <ImageName>sample string 3</ImageName>
  <LastUpdate>2025-06-14T06:08:00.7723075+00:00</LastUpdate>
  <Name>sample string 3.sample string 4</Name>
  <ReadOnly>true</ReadOnly>
</Image>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.