Return the password reset link for the given person. It is the same link as the one embedded in the password recovery email, so an admin can share it manually (for instance when email delivery is not configured). An already pending reset token is reused so a link shared earlier stays valid; a new one is generated otherwise.
POST
/actions/persons/{person_id}/reset-password-link
curl \
--request POST 'http://api.example.com/actions/persons/a24a6ea4-ce75-4665-a070-57453082c25/reset-password-link' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"reset_password_link": "string"
}