Skip to main content
POST
/
api
/
users
/
passcode
Passcode Login
curl --request POST \
  --url https://api.example.com/api/users/passcode \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "<string>",
  "password": "<string>"
}
'
{
  "user": {},
  "access_token": "<string>"
}

Body

application/json
email
string
required
password
string
required

Response

Successful Response

user
User · object
required
access_token
string
required