Table
Search
Domain
API명
method
URL
request
response
권한
진행상황
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
]
완료
GET
api/v1/friends/search/{keyword}
{}
List: [
username: username,
profileImage, profileImage
]
완료
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
]
완료