-
Notifications
You must be signed in to change notification settings - Fork 0
해시태그 등록
epitone edited this page Dec 11, 2020
·
1 revision
메소드 | 경로 | 짧은 설명 |
---|---|---|
POST | /post/detail/:postId/hashtag | 해시태그 등록 |
body : raw
{
"tag": "태그" (ex: "분위기 좋은 카페")
}
Success: postId를 31로 준 경우
{
"status": 200,
"success": true,
"message": "해시태그 생성 성공",
"data": {
"id": 24,
"tag": "분위기 좋은"
}
}
fail: 입력값 미등록시
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
fail: postId값이 없는 경우
{
"status": 400,
"success": false,
"message": "포스트 id 조회 실패"
}