-
Notifications
You must be signed in to change notification settings - Fork 0
닉네임 중복 체크
Haely edited this page Apr 13, 2022
·
2 revisions

[POST] ~/users/check
메소드 | 파라미터 | 설명 |
---|---|---|
Content-Type | application/json |
변수 | 타입 | 설명 |
---|---|---|
nickname | String | 중복 체크할 닉네임 |
{
"nickname": "abcd"
}
{
"status": 200,
"success": true,
"message": "사용 가능한 닉네임입니다.",
"data": {
"nickname": "haely"
}
}
{
"status": 400,
"success": false,
"message": "올바르지 않은 형식입니다."
}
{
"status": 400,
"success": false,
"message": "사용 중인 닉네임입니다."
}
-
User
-
Vinyl
-
Request