v7

latestOpenAPI 3.1.02026-08-0431138164.3 KB
Calendar

Get ILS property configuration for the authenticated ILS vendor

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.

get/v1/properties/ils-config

Query parameters

limitinteger

Maximum number of properties to return.

Maximum number of properties to return.

cursorstring

Pagination cursor returned by the previous response.

Pagination cursor returned by the previous response.

elise_org_idinteger

Restrict the response to properties under this Elise organization id.

Restrict the response to properties under this Elise organization id.

elise_property_idstring

Restrict the response to a single property by Elise property id. When set, pagination is ignored.

Restrict the response to a single property by Elise property id. When set, pagination is ignored.

Response

ILS configuration for the authenticated vendor.

ilsstring required

ILS associated with the authenticated vendor.

cursorstring

Cursor for the next page of results. Omitted or null when there are no more pages.

Example response

{
  "ils": "zillow",
  "properties": [
    {
      "elise_property_id": "12345",
      "elise_org_id": "85",
      "property": {
        "name": "The Elise Apartments",
        "address": {
          "street": "123 Main St",
          "city": "San Francisco",
          "state": "CA",
          "postal_code": "94105"
        },
        "management_company_name": "Elise Property Management"
      },
      "syndication": {
        "property_feed_url": "https://api.eliseai.com/v1/property/12345/mits5.xml"
      },
      "lead_routing": {
        "enabled": true,
        "destination_email": "building.12345@leads.eliseai.com"
      },
      "instant_tour": {
        "last_updated": "2026-06-12T04:00:00Z",
        "touring_types": [
          "In-Person",
          "Self-Guided",
          "Virtual"
        ],
        "availability_url": "https://api.eliseai.com/v1/property/12345/appointments/availability",
        "provider": "tourit",
        "tour_type": "self_guided"
      },
      "authorization": {
        "ils_config_management_authorized": true,
        "authorized_by_name": "Jane Manager",
        "authorized_by_email": "jane.manager@example.com",
        "authorized_by_role": "Regional Manager",
        "authorized_at": "2026-06-01T12:00:00Z"
      },
      "zillow_ai_assist": {
        "ils_listing_id": "2049600000",
        "ai_assist_status": {
          "listing_matched": true,
          "in_zillow_feed": true,
          "receiving_traffic": true,
          "product_level": "standard",
          "listing_url": "https://www.zillow.com/b/sunrise-apartments-san-francisco-ca-12345_zpid/",
          "chat_enabled": true
        }
      }
    }
  ],
  "cursor": "eyJsYXN0X2J1aWxkaW5nX2lkIjogMTIzNDV9"
}