---
title: "Get a list of integration events for a specific property."
method: GET
path: "/integration/v1/events"
tags: ["Integration Events"]
---

# Get a list of integration events for a specific property.

`GET /integration/v1/events`

## Query parameters

- `sort` QueryParameterSortSchema
  - `sort` SortSchema — Represents a list of sort fields to apply to the request
    - `fields` SortFieldSchema[] — The list of fields to sort by
      - `field` string — The field to apply the sort on
      - `direction` 'asc' | 'desc' — The direction of the sort
- `limit` integer
- `offset` integer
- `filters` QueryParameterDynamicFilterSchema
  - `filters` DynamicFilterSchema — Represents a logical group of filters with keys like 'and' or 'or'
    - `and` union[] — Logical operator grouping filters or nested logical groups
      - union
        - DynamicFilterFieldSchema — Represents a single filter condition
          - `field` string — The field to apply the filter on
          - `operator` 'greater_than_or_equal' | 'greater_than' | 'less_than_or_equal' | 'less_than' | 'equal' | 'in' | 'not_in' | 'is_null' | 'is_not_null' | 'equals' | 'not_equals' | 'contains' | 'not_contains' | 'starts_with' | 'not_starts_with' | 'ends_with' | 'not_ends_with' | 'is_empty' | 'is_not_empty' — The operator to use for the filter
          - `value` union — The value for the filter
            - string
            - string, date-time
            - string, date
            - integer
            - boolean
            - string[]
            - integer[]
            - string[]
            - string[]
        - DynamicFilterSchema — recursive
    - `or` union[] — Logical operator grouping filters or nested logical groups
      - union
        - DynamicFilterFieldSchema — Represents a single filter condition
          - `field` string — The field to apply the filter on
          - `operator` 'greater_than_or_equal' | 'greater_than' | 'less_than_or_equal' | 'less_than' | 'equal' | 'in' | 'not_in' | 'is_null' | 'is_not_null' | 'equals' | 'not_equals' | 'contains' | 'not_contains' | 'starts_with' | 'not_starts_with' | 'ends_with' | 'not_ends_with' | 'is_empty' | 'is_not_empty' — The operator to use for the filter
          - `value` union — The value for the filter
            - string
            - string, date-time
            - string, date
            - integer
            - boolean
            - string[]
            - integer[]
            - string[]
            - string[]
        - DynamicFilterSchema — recursive

## Headers

- `x-property-id` string, required

## Response `200`

List of integration events.

- IntegrationEventListResponseSchema
  - `data` IntegrationEventResponseSchema[], required
    - `id` string, required — Unique identifier for the integration event.
    - `propertyId` string, required — Unique identifier for the property.
    - `objectId` string, nullable — Unique identifier for the object associated with the integration event.
    - `objectType` string, required — Type of object associated with the integration event.
    - `system` string, required — Type of system associated with the integration event.
    - `status` 'open' | 'completed', required — Status of the integration event.
    - `result` 'failure' | 'success' | 'action_required' | 'warning', required — Result of the integration event.
    - `description` string, nullable — Short description of the integration event.
    - `details` string, nullable — Detailed information about the integration event.
    - `actionText` string, nullable — Text to be displayed for the action associated with the integration event.
    - `createdAt` string, Y-m-d\TH:i:sP, required
    - `updatedAt` string, Y-m-d\TH:i:sP, nullable
    - `retriedAt` string, Y-m-d\TH:i:sP, nullable
  - `total` integer, required — The total number of items available

## Other responses

- `400` — Bad Request response
- `401` — Unauthorized response
- `403` — Forbidden response
- `500` — Internal server error

---

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