Images
This endpoint is not generally available. For questions please contact sales.
GET /properties/{propertyId}/images HTTP/2
The property images endpoint returns a list of images.
Example use-cases:
- Display images of the property.
Request
curl -X GET 'https://quis.de/api/v2/properties/<PROPERTY-ID>/images?api_key=<YOUR-API-KEY>'
| Field | Description | Type | Remarks | 
|---|---|---|---|
| propertyId | The id of the property | string | |
| limit | Maximum number of items to return | integer | max: 100, default: 10 | 
| offset | Number of items to skip | integer | default: 0 | 
Response
{
  "items": [
    {
      "id": "aee52a8c-6a50-4e3f-b5bd-6aecd2d4abbd",
      "propertyId": "9b4f4f58-92bb-4ea3-b623-53b2141a17de",
      "type": "default",
      "caption": "The kitchen",
      "src": "https://quis.de/.../image.jpg",
      "previewSrc": "https://quis.de/.../image.jpg"
    },
    ...
  ],
  "totalItems": 3,
  "meta": {
    "url": null,
    "version": "2.15.0"
  }
}
| Field | Description | Type | Remarks | 
|---|---|---|---|
| items | List of images | array of PropertyImage | |
| totalItems | Total number of items | integer | |
| meta | Meta information of the API | Meta |