POST
/
auth
/
signin
Sign in to your account
curl --request POST \
  --url https://staging.api.mavapay.co/api/v1/auth/signin \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "johndoe@email.com",
  "password": "password"
}'
{
  "status": "ok",
  "message": "Login successful",
  "data": {
    "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
  }
}

Body

application/json

Response

200
application/json

Login successful

The response is of type object.