Skip to main content
POST
/
api
/
v1
/
auth
/
login
User login
curl --request POST \
  --url https://api.paylora.org/api/v1/auth/login \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "test@email.com",
  "password": "qwerty123"
}
'
{
  "success": true,
  "data": {
    "access": ""
  }
}

Body

application/json
email
string
required
Example:

"test@email.com"

password
string
required
Example:

"qwerty123"

Response

User`s logined