Skip to main content
POST
/
auth
/
password-reset-complete
cURL
curl --request POST \
  --url https://app.closerx.ai/api/auth/password-reset-complete/ \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api-key>' \
  --data '
{
  "uidb64": "<string>",
  "token": "<string>",
  "password": "<string>"
}
'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Authorizations

api_key
string
header
required

Body

application/json

User ID, token, and new password for password reset

uidb64
string
required

Base64 encoded user ID

token
string
required

Password reset token

password
string<password>
required

New password for the user

Response

Password reset response

success
boolean
required

Indicates whether the password reset was successful

message
string
required

Message describing the result of the password reset request

data
object
required

Empty object containing no additional data