---
title: "Get ILS property configuration for the authenticated ILS vendor"
method: GET
path: "/v1/properties/ils-config"
tags: ["Calendar"]
---

# Get ILS property configuration for the authenticated ILS vendor

`GET /v1/properties/ils-config`

Returns property-level ILS configuration for the authenticated ILS vendor.

Use this endpoint to discover which Elise properties are configured for your ILS and to read
the current syndication, lead routing, instant-tour, and authorization settings for each property.

Results are paginated. Pass the `cursor` value from a response into the next request to continue
listing properties. A `null` cursor means the response is the last page.

## Query parameters

- `limit` integer — Maximum number of properties to return.
- `cursor` string — Pagination cursor returned by the previous response.
- `elise_org_id` integer — Restrict the response to properties under this Elise organization id.
- `elise_property_id` string — Restrict the response to a single property by Elise property id. When set, pagination is ignored.

## Response `200`

ILS configuration for the authenticated vendor.

- IlsConfigResponse
  - `ils` string, required — ILS associated with the authenticated vendor.
  - `properties` IlsPropertyConfig[], required — Properties configured for the authenticated ILS vendor.
    - `elise_property_id` string, required — Elise property identifier.
    - `elise_org_id` string, required — Elise organization identifier that owns this property.
    - `property` IlsPropertyDetails, required
      - `name` string, required — Property display name.
      - `address` IlsPropertyAddress, required
        - `street` string — Property street address.
        - `city` string — Property city.
        - `state` string — Property state or province.
        - `postal_code` string — Property postal code.
      - `management_company_name` string — Management company associated with the property.
    - `syndication` IlsSyndicationConfig, required
      - `status` 'on' | 'pending' | 'failed' | 'off', required — An enumeration.
      - `property_feed_url` string — MITS feed URL for the property when syndication is enabled.
    - `lead_routing` IlsLeadRouting, required
      - `enabled` boolean, required — Whether lead routing is enabled for this property.
      - `destination_email` string — Email address where leads from this ILS should be delivered.
    - `instant_tour` IlsInstantTourConfig, required
      - `status` 'on' | 'pending_on' | 'off' | 'pending_off', required — An enumeration.
      - `last_updated` string, date-time — When instant tour booking configuration was last updated.
      - `touring_types` string[] — Tour types available for instant booking.
      - `availability_url` string — URL vendors can use to retrieve appointment availability for this property.
      - `provider` string — Instant tour provider reported by the ILS feed (e.g. who powers instant tour).
      - `tour_type` string — Instant tour type reported by the ILS feed.
    - `authorization` IlsAuthorization, required
      - `ils_config_management_authorized` boolean, required — Whether the management company has authorized this ILS to manage the property's ILS configuration at an organization level.
      - `authorized_by_name` string — Name of the user who granted authorization.
      - `authorized_by_email` string — Email of the user who granted authorization.
      - `authorized_by_role` string — Role of the user who granted authorization.
      - `authorized_at` string, date-time — When authorization was granted.
    - `zillow_ai_assist` IlsZillowConfig
      - `ils_listing_id` string — Zillow global listing id matched to this property, if any.
      - `ai_assist_status` ZillowAiAssistSummary, required
        - `status` 'not_contracted' | 'off' | 'pending_off' | 'match_failed' | 'pending_on' | 'on_no_traffic' | 'on', required — An enumeration.
        - `listing_matched` boolean, required — Whether Elise has successfully matched this property to a Zillow listing.
        - `in_zillow_feed` boolean, required — Whether the property is currently exported into the Zillow feed.
        - `receiving_traffic` boolean, required — Whether Zillow has begun routing prospect traffic to this property.
        - `product_level` string — Zillow AI Assist product level for the property, if enabled.
        - `listing_url` string — Public Zillow listing URL when a match exists.
        - `chat_enabled` boolean — Whether Zillow reports Elise AI chat as enabled for the matched listing (from the Zillow feed).
  - `cursor` string — Cursor for the next page of results. Omitted or null when there are no more pages.

## Other responses

- `400` — Invalid pagination cursor
- `401` — Not Authorized for this endpoint
- `403` — Vendor access required or vendor is not a registered ILS
- `404` — Not found
- `422` — Validation Error

---

[API](https://skmtc.net/eliseai/apis/elise-api.md) · [All operations](https://skmtc.net/eliseai/apis/elise-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eliseai/elise-api/versions/c3e8edfc04a2/schema)
