Password resets

Send an email with the password reset link to a user:

Method: POST

URL: /password_resets.json

PARAMETERS:
{
  "password_reset": {
          "email": "user@example.com"
       }
}
Set a new password for a user:

Method: PUT

URL: /password_resets/[ID].json

PARAMETERS:
{
  "user": {
       "password": "new_password",
       "password_confirmation": "new_password_confirmation"
     }
}