Public
Documentation Settings

weekly-sports

User

POST회원가입

https://whenwheres.com/v1/users/signup
Bodyraw (json)
json
{
    "email": "example@gmail.com",
    "password": "1234",
    "username": "example"
}

POST로그인

https://whenwheres.com/v1/users/login
Bodyraw (json)
json
{
    "email": "example@gmail.com",
    "password": "1234"
}

POST패스워드 확인

https://whenwheres.com/v1/users/check
HEADERS
Authorization
Bodyraw (json)
json
{
    "password": "1234"
}

PUT프로필 수정

https://whenwheres.com/v1/users
HEADERS
Authorization
Bodyraw (json)
json
{
    "username" : "name",
    "password" : "12345",
    "introduction" : "hihi"
}
Loading