GET apioauth/installationportal/services/{serviceId}/photos

Return all photos for a service

Request Information

URI Parameters

NameDescriptionTypeAdditional information
serviceId

The service id queried

unsigned integer

Required

Body Parameters

None.

Response Information

Resource Description

A QueryInstallationPortalPhotoResponse

QueryInstallationPortalPhotoResponse
NameDescriptionTypeAdditional information
InstallationPortalServicePhotos

A collection of photos

Collection of InstallationPortalPhoto

None.

Response Formats

application/json, text/json

Sample:
{
  "InstallationPortalServicePhotos": [
    {
      "Id": 1,
      "PhotoName": "sample string 2",
      "PhotoUrl": "sample string 3",
      "CreatedDate": "2025-04-27T16:50:13.2847608+00:00",
      "Index": 5
    },
    {
      "Id": 1,
      "PhotoName": "sample string 2",
      "PhotoUrl": "sample string 3",
      "CreatedDate": "2025-04-27T16:50:13.2847608+00:00",
      "Index": 5
    }
  ]
}

application/xml, text/xml

Sample:
<QueryInstallationPortalPhotoResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <InstallationPortalServicePhotos>
    <InstallationPortalPhoto>
      <Id>1</Id>
      <PhotoName>sample string 2</PhotoName>
      <PhotoUrl>sample string 3</PhotoUrl>
      <CreatedDate>2025-04-27T16:50:13.2847608+00:00</CreatedDate>
      <Index>5</Index>
    </InstallationPortalPhoto>
    <InstallationPortalPhoto>
      <Id>1</Id>
      <PhotoName>sample string 2</PhotoName>
      <PhotoUrl>sample string 3</PhotoUrl>
      <CreatedDate>2025-04-27T16:50:13.2847608+00:00</CreatedDate>
      <Index>5</Index>
    </InstallationPortalPhoto>
  </InstallationPortalServicePhotos>
</QueryInstallationPortalPhotoResponse>