[PUT] 게시물 변경 - GreenByMe/GreenByMe_Server GitHub Wiki
게시물 변경
| 메소드 | 경로 | 짧은설명 |
|---|---|---|
| PUT | /api/posts/{postId} | 게시물 변경 |
요청 헤더
content-type: application/json
요청 파라미터
postId: 게시물 Id
요청 바디
{
"open": true,
"text": "string",
"title": "string",
"userId": 0
}
응답 바디
변경 성공
{
"id": 26
}