Public
Documentation Settings

Booking-Management

Auth

POSTregister

http://localhost:5000/api/v1/auth/register
Bodyraw (json)
json
{
    "email": "user@gmail.com",
    "password": "123456"
}

POSTlogin

http://localhost:5000/api/v1/auth/login
AUTHORIZATIONBearer Token
Token

<token>

Bodyraw (json)
json
{
    "email": "user@gmail.com",
    "password": "123456"
}

POSTrefresh-token

http://localhost:5000/api/v1/auth/refresh-token

POSTchange-password

http://localhost:5000/api/v1/auth/change-password
AUTHORIZATIONBearer Token
Token

<token>

Bodyraw (json)
json
{
    "oldPassword": "123456",
    "newPassword": "12345678"
}
Loading