Alokai
You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current

GetReviewParams

Parameters for the getReview API endpoint

export interface GetReviewParams {
	limit?: number;
	offset?: number;
	productId?: string;
	sort?: string | string[];
	where?: string;
}

Properties

NameRequiredTypeDescription
limitOptionalnumberPagination limit
offsetOptionalnumberPagination offset
productIdOptionalstringID of the parent product
sortOptionalstring | string[]Sorting options. You can read more here
whereOptionalstringCustom where query

On this page