PUT 1.0/website/maintenancerequests/{id}

Description

Add an array of images to a Maintenance Request

URI Parameters

Name Description Type Additional information
id

The ID number of the Maintenance Request

integer

Required

Collection of Image
Name Description Type Additional information
Name

string

None.

Data

Collection of byte

None.

application/json, text/json

Sample:
[
  {
    "name": "sample string 1",
    "data": "QEA="
  },
  {
    "name": "sample string 1",
    "data": "QEA="
  }
]

application/xml, text/xml

Sample:
<ArrayOfImage xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Image>
    <Name>sample string 1</Name>
    <Data>QEA=</Data>
  </Image>
  <Image>
    <Name>sample string 1</Name>
    <Data>QEA=</Data>
  </Image>
</ArrayOfImage>

application/x-www-form-urlencoded

Sample:

Sample not available.

The amount of pictures saved against the maintenance request

integer

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int>1</int>