GET api/Image?accountId={accountId}&reference={reference}

Retrieves a collection of image references for the device.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
accountId

Customer account ID

string

Required

reference

Customer device reference

string

Required

Body Parameters

None.

Response Information

Resource Description

The collection of image references.

Collection of Image
NameDescriptionTypeAdditional information
id

globally unique identifier

None.

accountId

string

None.

reference

string

None.

link

Collection of Link

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "66d0cdf3-40b4-4a4d-9e80-7d97347377a7",
    "accountId": "sample string 2",
    "reference": "sample string 3",
    "link": []
  },
  {
    "id": "66d0cdf3-40b4-4a4d-9e80-7d97347377a7",
    "accountId": "sample string 2",
    "reference": "sample string 3",
    "link": []
  }
]

application/xml, text/xml

Sample:
<ArrayOfImage xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <image id="66d0cdf3-40b4-4a4d-9e80-7d97347377a7" accountId="sample string 2" reference="sample string 3" />
  <image id="66d0cdf3-40b4-4a4d-9e80-7d97347377a7" accountId="sample string 2" reference="sample string 3" />
</ArrayOfImage>