Function getChangeStoreChangesTabularViews

  • Returns changes in tabular format, showing modified rows with optional expansion to include all columns.

    Parameters

    • storeId: string

      The id of the change store.

    • query: { expandRow?: boolean; filter?: string; limit?: number; page?: string }

      an object with query parameters

      • OptionalexpandRow?: boolean

        When set to true, the records returned by this endpoint will include the latest change (if available) for each editable column in the record. This parameter should be used in combination with a filter on updatedAt for use cases that require all editable columns to be included in each response.

      • Optionalfilter?: string

        A SCIM filter expression used to filter the result. The filter parameter allows complex logical expressions using comparison operators and grouping.

        • Supported attributes: committed, cellKey.columnId, columnId, createdBy, createdAt, updatedAt
        • Supported operators: eq, ne, co, sw, ew, pr, gt, ge, lt, le
        • Logical operators: and, or, not
      • Optionallimit?: number

        Defines the size of each paged result (maximum 100).

      • Optionalpage?: string

        Used for cursor-based pagination.

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetChangeStoreChangesTabularViewsHttpResponse>

    getChangeStoreChangesTabularViews(
    "507f1f77bcf86cd799439011",
    {
    page: "1a2b3c",
    limit: 100
    }
    )

    GetChangeStoreChangesTabularViewsHttpError