
| Path Variable | key | 데이터 타입 | 길이 | Null 여부 |
|---|---|---|---|---|
| Y | nickname | string | 16 | N |
| key | 데이터 타입 | 길이 | Null 여부 |
|---|---|---|---|
| status | int | N | |
| message | string | 256 | N |
GET http://localhost:8080/api/check/{nickname}
Status Code 200{
"status": 200,
"message": "사용 가능한 닉네임 입니다."
}
Status Code 400{
"status": 400,
"message": "이미 사용중인 닉네임 입니다."
}