Skip to main content
POST
/
auth
/
login
Login User
curl --request POST \
  --url https://api-dev.monyfix.tech/auth/login \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "phone": "<string>"
}
'
{
  "id": "<string>",
  "phone": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
phone
string
required

Response

Successful Response

id
string
required
phone
string
required