[POST] 회원가입 - GreenByMe/GreenByMe_Server GitHub Wiki
회원가입
| 메소드 | 경로 | 짧은설명 |
|---|---|---|
| POST | /api/users | 회원가입 |
요청 헤더
content-type: application/json
요청 바디
{
"email": "string",
"name": "string",
"nickname": "string",
"password": "string"
}
응답 바디
회원가입 성공
{
"id": 7,
}