GET apioauth/installationphotos/{photoId}

Get a photo

Request Information

URI Parameters

NameDescriptionTypeAdditional information
photoId

The photo id queried

integer

Required

Body Parameters

None.

Response Information

Resource Description

PhotoResponse

PhotoResponse
NameDescriptionTypeAdditional information
Id

The id of the photo

integer

None.

PhotoURL

The url of the photo

string

None.

Timestamp

The timestamp of the photo

date

None.

Latitude

The latitude where the photo was taken

decimal number

None.

Longitude

The longitude where the photo was taken

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "PhotoURL": "sample string 2",
  "Timestamp": "2025-04-26T23:30:03.2795491+00:00",
  "Latitude": 4.1,
  "Longitude": 5.1
}

application/xml, text/xml

Sample:
<PhotoResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>1</Id>
  <PhotoURL>sample string 2</PhotoURL>
  <Timestamp>2025-04-26T23:30:03.2795491+00:00</Timestamp>
  <Latitude>4.1</Latitude>
  <Longitude>5.1</Longitude>
</PhotoResponse>