-
Notifications
You must be signed in to change notification settings - Fork 1
[Home] 답변 공개여부 수정하기
Jihyun247 edited this page Jan 7, 2021
·
5 revisions
PUT /home/public
name | type | description | required |
---|---|---|---|
token | String | 토큰 | O |
name | type | description | required |
---|---|---|---|
answer_id | Int | 공개여부 수정하고자 하는 답변의 id | O |
public_flag | Int | 공개여부 flag (공개 1, 비공개 0) | O |
{
"answer_id" : 2,
"public_flag": 1
}
name | type | description |
---|---|---|
status | Int | |
success | Boolean | |
message | String |
{
"status": 200,
"success": true,
"message": "공개여부 수정 성공"
}