-
Notifications
You must be signed in to change notification settings - Fork 1
채팅방 수정
SuyeonChoi edited this page Feb 7, 2022
·
3 revisions
PUT
/api/chatroom/{userChatroomId}
Method | Parameter | Description |
---|---|---|
Content-Type | application/json | |
token | {token} | access token값 |
Parameter | Type | Description | Required |
---|---|---|---|
userChatroomId | Long | 유저 채팅방 id | Y |
Field | Type | Description | Required |
---|---|---|---|
inputLock | boolean | 채팅방 입력 창 잠금 여부 | Y |
title | String | 채팅방 이름. 최대 50글자로 제한 | N |
imageUrl | String | 채팅방 이미지 S3 URL | N |
Method | Parameter | Description |
---|---|---|
statusCode | {statusCode} |
Field | Type | Description |
---|---|---|
status | Integer | 응답 코드 |
message | String | 응답 메세지 |
data | Object | 수정된 채팅방 정보. data 참고 |
Field | Type | Description |
---|---|---|
userChatroomId | Long | 유저의 채팅방 id |
title | String | 채팅방 이름 |
imageUrl | String | 채팅방 이미지 S3 URL |
inputLock | Boolean | 채팅방 입력 창 잠금 여부 |
{
"status": 200,
"messsage": "채팅방 수정 성공",
"data": {
"userChatroomId": 3,
"title": "DEV CAMP 플레임 팀",
"imageUrl": "https://flametalk-bucket.s3.ap-northeast-2.amazonaws.com/profile/flametalk_file1_20222621172609.JPG",
"inputLock": true
}
}
Code | Error Messsage |
---|---|
400 | Bad Request |
401 | Unauthorized |
500 | Server Error |
{
"status": 400,
"message": "잘못된 요청입니다.",
"error": "BAD_REQUEST",
"code": "BAD_REQUEST",
"timestamp": "2022-01-18T19:30:16.3072905",
}
-
게이트웨이(API Gateway)
-
인증(Authentication)
-
디바이스(Device)
-
채팅방(Chatroom)
-
채팅(Chat)
-
프레젠스(Presence)
-
멤버십(Membership) - 친구
-
멤버십(Membership) - 프로필
-
멤버십(Membership) - 오픈 프로필
-
멤버십(Membership) - 피드
-
파일(File)