GET apioauth/photodescriptions/{photoDescriptionId}

Get a photo description

Request Information

URI Parameters

NameDescriptionTypeAdditional information
photoDescriptionId

The photo description id queried

integer

Required

Body Parameters

None.

Response Information

Resource Description

PhotoDescriptionResponse
NameDescriptionTypeAdditional information
Id

The id of the photo description

integer

None.

Description

The description

string

None.

InstallationPhotoType

The type of the photos

InstallationPhotoType

None.

Photos

A collection of the photos

Collection of PhotoResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Description": "sample string 2",
  "InstallationPhotoType": 0,
  "Photos": [
    {
      "Id": 1,
      "PhotoURL": "sample string 2",
      "Timestamp": "2025-04-27T16:39:58.756544+00:00",
      "Latitude": 4.1,
      "Longitude": 5.1
    },
    {
      "Id": 1,
      "PhotoURL": "sample string 2",
      "Timestamp": "2025-04-27T16:39:58.756544+00:00",
      "Latitude": 4.1,
      "Longitude": 5.1
    }
  ]
}

application/xml, text/xml

Sample:
<PhotoDescriptionResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Id>1</Id>
  <Description>sample string 2</Description>
  <InstallationPhotoType>Damage</InstallationPhotoType>
  <Photos>
    <PhotoResponse>
      <Id>1</Id>
      <PhotoURL>sample string 2</PhotoURL>
      <Timestamp>2025-04-27T16:39:58.756544+00:00</Timestamp>
      <Latitude>4.1</Latitude>
      <Longitude>5.1</Longitude>
    </PhotoResponse>
    <PhotoResponse>
      <Id>1</Id>
      <PhotoURL>sample string 2</PhotoURL>
      <Timestamp>2025-04-27T16:39:58.756544+00:00</Timestamp>
      <Latitude>4.1</Latitude>
      <Longitude>5.1</Longitude>
    </PhotoResponse>
  </Photos>
</PhotoDescriptionResponse>