Function getChangeStores

  • Get a list of change-stores.

    Parameters

    • query: {
          filter?: string;
          limit?: number;
          page?: string;
          sort?: string;
          spaceId: 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: storeName, storeId, referenceId, usedBy.appId, primaryKey
        • 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

      • spaceId: string

        The space ID to filter change stores by. This parameter is required. For personal spaces, use "personal". For shared spaces, use the actual space ID, e.g. "690b584c5a8011de9079828e".

    • Optionaloptions: ApiCallOptions

    Returns Promise<GetChangeStoresHttpResponse>

    getChangeStores(
    {
    page: "1a2b3c",
    limit: 100,
    sort: "+storeName",
    spaceId: "personal"
    }
    )

    GetChangeStoresHttpError