• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Setting up the API Client
  • Using the API Client
    • Getting started
  • Customers
    • Adding a customer
  • Branch Users
    • Managing branch users
  • List data
    • Getting list data
  • Properties
    • Referring a property
    • Searching for properties
    • Getting property details
  • Property Images
    • Listing property images
    • Adding property images
    • Removing property images
  • Property Notes
    • Listing property notes
  • Viewings
    • Listing property viewings
    • Creating a viewing
    • Rescheduling a viewing
    • Cancelling a viewing
    • Adding viewing feedback

Listing property images

To list the images for a property, you'll need to use the PropertyImages.GetPropertyImagesAsync method on the API client:

var images = await client.PropertyImages.GetPropertyImagesAsync(propertyId);

The images variable will contain a collection of PropertyImageDetails objects, each of which will contain the following properties:

  • Id

    • Type: int
    • Description: Gets or sets the ID of the image.
  • Url

    • Type: string
    • Description: Gets or sets the URL of the image.
  • ThumbnailUrl

    • Type: string
    • Description: Gets or sets the URL of the thumbnail.
  • Order

    • Type: int
    • Description: Gets or sets the order of the image.
In This Article
Back to top Generated by DocFX