For the complete documentation index, see llms.txt. This page is also available as Markdown.

Review

리뷰 도메인 API 명세

리뷰 작성

리뷰 작성

POST http://localhost:8080/reviews/write

리뷰를 작성합니다.

Headers

Name
Type
Description

token*

String

로그인 시 발급받은 JWT

Request Body

Name
Type
Description

idx*

String

주문의 고유 아이디

content*

String

리뷰 내용

starPoint*

Float

별점

{
    "success": true,
    "response": null,
    "error": null
}

유저별 리뷰 조회

유저별 리뷰 조회

GET http://localhost:8080/reviews

유저가 등록한 리뷰를 조회합니다.

Headers

Name
Type
Description

token*

String

로그인 시 발급받은 JWT

리뷰 수정

리뷰 수정

PUT http://localhost:8080/reviews/update

리뷰를 수정합니다.

Headers

Name
Type
Description

token*

String

로그인 시 발급받은 JWT

Request Body

Name
Type
Description

idx*

String

리뷰의 고유 ID

content*

String

리뷰 내용

리뷰 삭제

리뷰 삭제

DELETE http://localhost:8080/reviews/delete

리뷰를 삭제합니다.

Headers

Name
Type
Description

token*

String

로그인 시 발급받은 JWT

Request Body

Name
Type
Description

idx*

String

리뷰의 고유 ID

Last updated