POST
/
signin
/
passwordless
/
sms
/
otp
curl --request POST \
  --url https://local.auth.local.nhost.run/v1/signin/passwordless/sms/otp \
  --header 'Content-Type: application/json' \
  --data '{
  "otp": "<string>",
  "phoneNumber": "<string>"
}'
{
  "mfa": {
    "ticket": "<string>"
  },
  "session": {
    "accessToken": "<string>",
    "accessTokenExpiresIn": 123,
    "refreshToken": "2c35b6f3-c4b9-48e3-978a-d4d0f1d42e24",
    "user": {
      "activeMfaType": "totp",
      "avatarUrl": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "defaultRole": "user",
      "displayName": "John Smith",
      "email": "john.smith@nhost.io",
      "emailVerified": false,
      "id": "2c35b6f3-c4b9-48e3-978a-d4d0f1d42e24",
      "isAnonymous": false,
      "locale": "en",
      "metadata": {
        "firstName": "John",
        "lastName": "Smith"
      },
      "phoneNumber": "<string>",
      "phoneNumberVerified": false,
      "roles": [
        "me",
        "user"
      ]
    }
  }
}

Body

application/json
otp
string
required
phoneNumber
string
required

Response

200
application/json
User successfully authenticated
mfa
object
session
object