---
title: "Get Feedbacks"
method: GET
path: "/v1/shops/{shopId}/feedbacks"
tags: ["Feedbacks"]
---

# Get Feedbacks

`GET /v1/shops/{shopId}/feedbacks`

Retrieves the feedbacks.

## Request body

- object
  - `page` integer — Page number.
  - `perPage` integer — Items per page, 1-100. Must be at least 1. Must not be greater than 100.
  - `orderColumn` 'status' | 'rating' | 'reply' | 'created_at' | 'updated_at'
  - `orderDirection` 'asc' | 'desc'
  - `id` string — Filter by feedback ID.
  - `statuses` string[]
  - `invoice_id` string — Filter by invoice ID.
  - `rating` integer — Filter by rating, 1-5. Must be at least 1. Must not be greater than 5.
  - `invoice_email` string — Filter by customer email.
  - `message_keyword` string — Search in feedback messages.
  - `is_automatic` boolean — Only automatic feedbacks.
  - `created_at_start` string — Must be a valid date.
  - `created_at_end` string — Must be a valid date. Must be a date after <code>created_at_start</code>.
  - `reply_keyword` string — Search in replies.
  - `has_reply` boolean — Only feedbacks with a reply.
  - `product_name` string
  - `variant_name` string
  - `product_id` string
  - `variant_id` string

## Response `200`

- object
  - `current_page` integer
  - `data` object[]
    - `id` integer
    - `invoice_id` integer
    - `status` string
    - `message` string
    - `image` string
    - `rating` integer
    - `is_automatic` boolean
    - `reply` string
    - `dispute_reason` string
    - `disputed_at` string
    - `replied_at` string
    - `created_at` string
    - `updated_at` string
    - `deleted_at` string
    - `image_url` string
    - `invoice` object
      - `id` integer
      - `salt` string
      - `email` string
      - `unique_id` string
      - `items` object[]
        - `id` integer
        - `invoice_id` integer
        - `product_id` integer
        - `variant_id` integer
        - `custom_name` string
        - `product` object
          - `id` integer
          - `name` string
          - `stock_count` integer
        - `variant` object
          - `id` integer
          - `name` string
  - `first_page_url` string
  - `from` integer
  - `last_page` integer
  - `last_page_url` string
  - `links` object[]
    - `url` string
    - `label` string
    - `active` boolean
  - `next_page_url` string
  - `path` string
  - `per_page` integer
  - `prev_page_url` string
  - `to` integer
  - `total` integer

---

[API](https://skmtc.dev/sellauth/apis/sellauth-api.md) · [All operations](https://skmtc.dev/sellauth/apis/sellauth-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sellauth/sellauth-api/revisions/945e6d749d68/schema)
