Skip to main content

Endpoint

POST /auth/signin

Request Body

{
  "phoneNumber": "+1234567890"
}

Response

{
  "success": true,
  "data": {
    "user": {
      "id": "uuid",
      "phoneNumber": "+1234567890",
      "isActive": true
    },
    "accessToken": "jwt_token"
  }
}
Use accessToken for OTP operations.