아이디 찾기
아이디 찾기
● 마스킹 된 아이디 응답
GET
api/v1/member
Request Headers
Name
Value
Accept
application/json
Query Parameter
Name
Type
Description
Validation
email
string
이메일
이메일 형식
공백포함 불가
NOT NULL
name
string
이름
NOT NULL
공백포함 불가
2~8자 한글
Response
{
"status": 200,
"code": "SUCCESS REQUEST",
"data": {
"username": "agida****"
},
"timestamp": "2024-11-16 03:41:37"
}
Response(Validation Fail)
{
"status": 400,
"message": "올바른 이메일 형식이 아닙니다.",
"code": "ERR-VALID-MEM-09",
"timestamp": "2024-11-16 02:00:18"
}
Last updated