///
Search
Duplicate
🏉

API 명세서

Search
API 명세서
Domain
API명
method
URL
request
response
권한
진행상황
User
GET
api/v1/users/profile?userId=value
{}
username: username profileImage: profileImage
완료
GET
api/v1/users/logout
{}
{}
완료
POST
api/v1/users/signup
email: email username: username password: password
{}
완료
POST
api/v1/users/login
email: email password: password
{}
완료
PATCH
api/v1/users/profile?userId=value
username: username profileImage: profileImageUrl
{}
완료
PATCH
api/v1/users/password
prePassword: prePassword newPassword: newPassword checkNewPassword: chekNewPassword
{}
완료
GET
api/v1/users/serch
{}
List: [ userId: userId, username: username, profileImage, profileImage ]
완료
POST
api/v1/users/signup/email
email: email
{}
완료
PATCH
api/v1/users/signup/email
email: email code: code
{}
완료
Friend
GET
api/v1/friends
{}
List: [ username: username, profileImage, profileImage ]
완료
GET
api/v1/friends/search/{keyword}
{}
List: [ username: username, profileImage, profileImage ]
완료
POST
api/v1/friends/{friendId}
{}
{}
완료
DELETE
api/v1/friends/{friendId}
{}
{}
완료
ChatRoom
GET
api/v1/chat-rooms/{chatRoomId}
{}
title: title LIst: [ message: message username: username contentTime: contentTime ]
완료
GET
api/v1/chat-rooms
{}
List: [ title: title lastChat: lastChat lastChatTime: lastChatTime ]
완료
POST
api/v1/chat-rooms
List: [ friendId:friendId ] titile: title
chatRoomId: chatRoomId
완료
PATCH
api/v1/chat-rooms/{chatRoomId}
title: title
{}
완료
DELETE
api/v1/chat-rooms/{chatRoomId}
{}
{}
완료
Chat
POST
api/v1/chat-rooms/{chatRoomId}/chats
content: content
{}
완료
DELETE
api/v1/chat-rooms/{chatRoomId}/chats/{chatId}
{}
{}
완료