설명

Untitled

request 데이터 규약

Path Variable key 데이터 타입 길이 Null 여부
Y nickname string 16 N

response 데이터 규약

key 데이터 타입 길이 Null 여부
status int N
message string 256 N

request

GET http://localhost:8080/api/check/{nickname}


response

성공

{
	"status": 200,
	"message": "사용 가능한 닉네임 입니다."
}

실패

{
	"status": 400,
	"message": "이미 사용중인 닉네임 입니다."
}