Reviews > Product Reviews > productReviewsAnswersPage
Commerce APIReviewsProduct ReviewsproductReviewsAnswersPage
productReviewsAnswersPage
GET:product_reviews/answers/page.json

Description

Get all product review answers.

See also: Pagination.

Permission bit: "product_review_answers.read"

Topic: Product Reviews

Arguments

last_key: String

Key of the last item from previous page. See also: Pagination


limit: Int

Return up to N entries (pagination). See also: Pagination


min_flag_count: Int

Filter by flag count (inclusive)


offset: Int

Skip N entries (pagination). See also: Pagination


product_id: String

Filter output by product


shop_id: String!

Unique shop identifier. See also: Unique Identifiers

Example: "sh_EQzGqWoY"


sort_by: ProductReviewsAnswersPageSortBy

Whether to sort output in some specific way. See also: Pagination


sort_desc: Boolean

Whether to use descending sort order. See also: Pagination


status: ApprovalStatus

Publishing approval status


Result

ProductReviewAnswerPage

Preview (typescript)

function productReviewsAnswersPage(
last_key?: string
limit?: number
min_flag_count?: number
offset?: number
product_id?: string
shop_id: string
sort_by?: ProductReviewsAnswersPageSortBy | null
sort_desc?: boolean
status?: ApprovalStatus | null
): ProductReviewAnswerPage | null