DELETE
/
me
/
password
Remove Password
curl --request DELETE \
  --url https://{deploymentHost}/me/password \
  --header 'Content-Type: application/json' \
  --data '{
  "current_password": "currentPassword123!"
}'
{
"status": 200,
"message": "",
"data": {
"password_removed": true,
"passwordless_account": true,
"alternative_auth_methods": [
"social_connections",
"magic_link"
],
"removed_at": "2024-01-15T13:00:00Z"
},
"session": {
"signin_attempts": [],
"signins": [
{
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
],
"signup_attempts": [],
"active_signin": {
"id": "signin_987654321",
"user_id": "user_456789123",
"created_at": "2024-01-01T12:00:00Z"
}
},
"errors": []
}

Authorizations

__session
string
cookie
required

Session cookie authentication for production deployments. The session token is automatically set as an HTTP-only, secure cookie.

Body

application/json

Response

200
application/json

Password removed successfully

The response is of type object.