1. 디자이너 단건 조회
Endpoint
- URL:
/designers/{id}
- Method:
GET
- Description: 특정 디자이너의 상세 정보를 조회합니다.
Request
Path Parameter
Parameter |
Type |
Required |
Description |
id |
String |
✅ |
조회할 디자이너의 ID |
Response
200 OK
{
"id": "designer_123",
"name": "김디자",
"profile": "<https://example.com/profile.jpg>",
"area": "SEOUL_ALL",
"expertField": "CUT",
"introduce": "안녕하세요, 헤어 디자이너 김디자입니다.",
"addressId": 1,
"portfolio": "<https://example.com/portfolio>",
"types": ["ONLINE", "OFFLINE"],
"offlinePrice": 30000,
"onlinePrice": 15000
}
404 Not Found
{
"message": "해당 ID의 디자이너를 찾을 수 없습니다: designer_999"
}
4. 온라인 상담 가능 디자이너 목록 조회
Endpoint
- URL:
/designers/consulting/online
- Method:
GET
- Description: 온라인 상담이 가능한 디자이너 목록을 조회합니다.
Request