GET apioauth/installationportal/services/{serviceId}/photos
Return all photos for a service
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| serviceId |
The service id queried |
unsigned integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A QueryInstallationPortalPhotoResponse
QueryInstallationPortalPhotoResponse| Name | Description | Type | Additional 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-10-28T17:49:57.0371188+00:00",
"Index": 5
},
{
"Id": 1,
"PhotoName": "sample string 2",
"PhotoUrl": "sample string 3",
"CreatedDate": "2025-10-28T17:49:57.0371188+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-10-28T17:49:57.0371188+00:00</CreatedDate>
<Index>5</Index>
</InstallationPortalPhoto>
<InstallationPortalPhoto>
<Id>1</Id>
<PhotoName>sample string 2</PhotoName>
<PhotoUrl>sample string 3</PhotoUrl>
<CreatedDate>2025-10-28T17:49:57.0371188+00:00</CreatedDate>
<Index>5</Index>
</InstallationPortalPhoto>
</InstallationPortalServicePhotos>
</QueryInstallationPortalPhotoResponse>