Skip to main content
POST
/
v1
/
auth
/
forgot-password
Initiate password recovery
curl --request POST \
  --url https://api-sandbox.rinne.com.br/core/v1/auth/forgot-password \
  --header 'Content-Type: application/json' \
  --data '{
  "identifier": "user@company.com"
}'
{
  "message": "If this identifier is registered, a password reset code has been sent",
  "expires_at": "2025-01-01T00:00:00Z"
}

Body

application/json
identifier
string<email>
required

Email address

Example:

"user@company.com"

Response

Password recovery initiated

message
string
Example:

"If this identifier is registered, a password reset code has been sent"

expires_at
string<date-time>
Example:

"2025-01-01T00:00:00Z"