Function getChangeStoreChanges

  • Retrieve changes for the specified change store.

    Parameters

    • storeId: string

      The id of the change store.

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

      an object with query parameters

      • 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.

      • Optionalsort?: string

        Sort results by a field, with optional + (asc) or - (desc) prefix

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetChangeStoreChangesHttpResponse>

    getChangeStoreChanges(
    "507f1f77bcf86cd799439011",
    {
    page: "1a2b3c",
    limit: 100,
    sort: "+createdAt"
    }
    )

    GetChangeStoreChangesHttpError