질문자 채팅 신고하기 - Willson-2019/Willson-Server GitHub Wiki
URL
[POST] ~/api/v1/asker/chat/report/:match_idx
REQUEST | PARAMETER NAME | DESCRIPTION |
---|---|---|
header | x-token | 엑세스 토큰 access token |
header | Content-Type | application/json |
body | reports | 도큐먼트 id : String[] |
요청예시
body
{
"reports": ["2ngPJRNZRwEMmu59xqCO", "6DYl4IqbieKeiYuu1c9a"]
}
응답예시
성공
{
"code": "successfully_updated",
"message": "Successfully updated."
}
도큐먼트 id가 잘못된 경우
{
"error": "5 NOT_FOUND: No document to update: projects/willson-53d9e/databases/(default)/documents/chatrooms/1292684181_Ql8RXq85jZTGkyvM5iEdUdoSqya2_1608136429264/chats/2ngPJRNZRw2EMmu59xqCO"
}
access token이 만료된 경우
{
"code": "access_token_expired",
"message": "Access token expired"
}
결과를 찾지 못한 경우
{
"code": "not_found",
"message": "Result not found"
}