---
title: "Fetch all inquiries."
method: GET
path: "/v2/inquiries"
tags: ["Inquiries"]
---

# Fetch all inquiries.

`GET /v2/inquiries`

## Query parameters

- `property_ids` integer[], nullable
- `since_utc` string, date-time, nullable
- `include_tags` boolean
- `include_guest` boolean

## Response `200`

A pageable list of inquiry models.

- PageableEnumerableOfInquiryModel — Represents a single page plus meta data for a collection of records.
  - `items` InquiryModel[] — The subset of records for the current page in the collection.
    - `id` integer — The ID of this record.
    - `tags` string[] — A collection of tag names.
    - `adults` integer, nullable — The inquired number of adults.
    - `arrival` string, date-time, nullable — The inquired date of arrival.
    - `check_in` string — The inquired arrival checkin time.
    - `check_out` string — The inquired departure checkout time.
    - `children` integer, nullable — The inquired number of children.
    - `comments` string — Notes about this quote.
    - `created_utc` string, date-time — The date this inquiry was created in the system.
    - `departure` string, date-time, nullable — The inquired date of departure.
    - `guest` GuestPartialModel — Partial details about the guest. For full details, use the guests endpoint.
      - `id` integer — The ID of this record.
      - `first_name` string
      - `last_name` string
    - `guest_id` integer — The ID of the guest this inquiry was created for.
    - `guests` integer, nullable — The inquired total number of guests.
    - `infants` integer, nullable — The inquired number of infants.
    - `listing_site` string — The listing site this inquiry is attributed to.
    - `pets` integer, nullable — The inquired number of pets.
    - `platform_email_address` string — A proxy email address provided by the OTA specifically for this inquiry.
    - `property_id` integer, nullable — The inquired property ID.
    - `received_utc` string, date-time — The date this inquiry was received.
    - `thread_ids` integer[]
    - `type` 'in_person' | 'email' | 'phone' | 'widget' | 'inquiry_spot' | 'channel'
    - `updated_utc` string, date-time, nullable — The date this inquiry was last updated in the system.
  - `limit` integer — The maximum number of records per page.
  - `next_page_url` string — URL to fetch the next page of records. A null value indicates that there are no more pages in the collection.
  - `offset` integer — The current offset from the start of the collection.

---

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