Get Reviews Info

Get Review Info

GET /api/reviews

Access Permissions

Role
Description
ADMIN

관리자

MANAGER

CS 담당자

SELLER

판매자

CUSTOMER

구매자

Request Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Description
Required

page

Integer

Page number

false

size

Integer

Page Size (10,30,50)

false

sort

String

Value of the 'orderby' (ex) createdAt)

false

direction

String

Direction of the sorting (DESC, ASC)

false

reviewId

Long

Review ID

false

userId

Long

CUSTOMER's ID

false

companyId

Long

Company ID

false

productId

Long

Product ID

false

Response

{ 
    "status": 200,
    "data": {
        "reviewId": 1,
        "orderDetailsId": 1,
        "loginId": "1",
        "username": "username1",
        "nickname": "nickname1",
        "content": "content1",
        "score": 1,
        "reportCount": 0
    },
    "error": null,
    "timeStamp": "2024-09-27 12:00:00"
}

Last updated