PUT/boards/{boardId}/posts/{postId}/comments/{commentId}
The author is not notified when a comment is updated.
Mentioning a user is not supported.
This API operation cannot update a comment containing a sticker.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
board
| Parameter | Type | Description |
|---|---|---|
| boardId | integer | Board ID required example : 100 format : int64 |
| postId | integer | Post ID required example : 1 format : int64 |
| commentId | integer | Comment ID required example : 1 format : int64 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Property | Type | Description |
|---|---|---|
| content | string | Content required minLength : 1 maxLength : 5000 |
example
1{2 "content": "Example content"3}OK
| Property | Type | Description |
|---|---|---|
| boardId | integer | Board no. required format : int64 readOnly : true |
| postId | integer | Post no. required format : int64 readOnly : true |
| commentId | integer | Comment no. required format : int64 readOnly : true |
| content | string | Content required |
| createdTime | string | Creation time
required format : date-time readOnly : true |
| modifiedTime | string | Update time
format : date-time readOnly : true |
| userId | string | Author ID. readOnly : true nullable : true |
| userName | string | Author name required readOnly : true |
| hasReply | boolean | Indicates whether the comment has a reply. default : false readOnly : true |
| hasAttachment | boolean | Indicates whether the comment has an attachment. default : false readOnly : true |
| isDeleted | boolean | When the comment that has a reply is deleted. default : false readOnly : true |
example
1{2 "boardId": 100,3 "postId": 1,4 "commentId": 1,5 "content": "Example content",6 "createdTime": "2022-10-28T17:26:35+09:00",7 "modifiedTime": "2022-10-28T17:26:35+09:00",8 "userId": "userf7da-f82c-4284-13e7-030f3b4c756x",9 "userName": "Susan Nielsen",10 "hasReply": false,11 "hasAttachment": false,12 "isDeleted": false13}