Skip to main content
POST
/
v1
/
auth
/
reset-password
Reset password with verification code
curl --request POST \
  --url https://api-sandbox.rinne.com.br/core/v1/auth/reset-password \
  --header 'Content-Type: application/json' \
  --data '{
  "identifier": "user@company.com",
  "code": "123456",
  "new_password": "NewSecurePassword123"
}'
{
  "message": "Password reset successfully"
}

Body

application/json
identifier
string
required

Email or phone number

Example:

"user@company.com"

code
string
required

6-digit verification code

Example:

"123456"

new_password
string<password>
required

New password (min 8 characters)

Example:

"NewSecurePassword123"

Response

Password reset successfully

message
string
Example:

"Password reset successfully"