⚠️ This documentation is not complete and will change. Documentation and API References are actively being updated.
curl --request POST \
--url https://api.propops.app/api/password-reset \
--header 'Content-Type: application/json' \
--data '
{
"action": "request",
"email": "user001@example.com"
}
'{
"success": true,
"message": "Operation completed successfully"
}Two-step password reset flow:
request — Send a reset link to the user’s email addressreset — Submit a new password with the reset tokenAuthentication: Not required.
curl --request POST \
--url https://api.propops.app/api/password-reset \
--header 'Content-Type: application/json' \
--data '
{
"action": "request",
"email": "user001@example.com"
}
'{
"success": true,
"message": "Operation completed successfully"
}