view DesignerDetail

users seek to get the detail of the designer

GET /designers/detail/{designerId}

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Request-Body

Response

{
   "designerId": "human01",
   "name": "홍길동",
   "phoneNumber": 01045456677
   "specialty": "커트",
   "rating": 4.5,
   "introduction": "경력 5년의 전문 커트 디자이너입니다."
   "reviews": [
   {
      "reviewId": 98765,
      "content": "아주 만족스러운 서비스였습니다.",
      "rating": 5,
      "user": {
        "userId": "imhungry1",
        "username": "micky"
      }
    },
    {
      "reviewId": 98766,
      "content": "매우 친절하고 실력이 좋았습니다.",
      "rating": 4,
      "user": {
        "userId": "haircut1004",
        "username": "jun"
      }
    }
    // 추가 리뷰들...
  ]
}

Last updated