localhost 접속시
http://localhost:8080/api/v1/member/signup
배포환경 접속시
http://”AWS 주소”/api/v1/member/signup
Body 구성
구성 요소 | type |
email | String |
password | String |
name | String |
Request
{
"email": "test@test.com",
"password": "test",
"name": "name"
}
JSON
복사
Response
200
JSON
복사
400
{
"올바른 입력이 아닙니다."
}
JSON
복사
500
{
"서버 내부 에러입니다."
}
JSON
복사