Get all the needed information for feedbacks page of the shop

GET /v2/public/shops/{shopId}/feedbacks

Path parameters

  • shopId integer(int32) Required

Query parameters

  • key string

Responses

  • Page Info

    Hide response attributes Show response attributes object
    • data object

      Additional properties are NOT allowed.

      Hide data attribute Show data attribute object
      • feedbacks array[object] | null
        Hide feedbacks attributes Show feedbacks attributes object
        • rating integer(int32) | null
        • comment string | null
        • sellerReply string | null
        • createdAt string(date-time) | null
        • updatedAt string(date-time) | null
    • message string | null
    • errors array[string] | null
    • log string | null
    Hide response attributes Show response attributes object
    • data object

      Additional properties are NOT allowed.

      Hide data attribute Show data attribute object
      • feedbacks array[object] | null
        Hide feedbacks attributes Show feedbacks attributes object
        • rating integer(int32) | null
        • comment string | null
        • sellerReply string | null
        • createdAt string(date-time) | null
        • updatedAt string(date-time) | null
    • message string | null
    • errors array[string] | null
    • log string | null
    Hide response attributes Show response attributes object
    • data object

      Additional properties are NOT allowed.

      Hide data attribute Show data attribute object
      • feedbacks array[object] | null
        Hide feedbacks attributes Show feedbacks attributes object
        • rating integer(int32) | null
        • comment string | null
        • sellerReply string | null
        • createdAt string(date-time) | null
        • updatedAt string(date-time) | null
    • message string | null
    • errors array[string] | null
    • log string | null
  • 404

    Shop Not Found

GET /v2/public/shops/{shopId}/feedbacks
curl \
 --request GET 'https://dev.sellpass.io/v2/public/shops/{shopId}/feedbacks' \
 --header "Authorization: $API_KEY"
Response examples (200)
{
  "data": {
    "feedbacks": [
      {
        "rating": 42,
        "comment": "string",
        "sellerReply": "string",
        "createdAt": "2025-05-04T09:42:00Z",
        "updatedAt": "2025-05-04T09:42:00Z"
      }
    ]
  },
  "message": "string",
  "errors": [
    "string"
  ],
  "log": "string"
}
Response examples (200)
{
  "data": {
    "feedbacks": [
      {
        "rating": 42,
        "comment": "string",
        "sellerReply": "string",
        "createdAt": "2025-05-04T09:42:00Z",
        "updatedAt": "2025-05-04T09:42:00Z"
      }
    ]
  },
  "message": "string",
  "errors": [
    "string"
  ],
  "log": "string"
}