Reset Password Webhook

Reset Password Webhook

A password reset can be requested from the application login page. Upon submission by a User, the details will be sent via webhook. See the Webhook Events Overview for more general information.

ID: Webhook ID
Event: user_reset_password
Target: Includes unique User ID as id
Body: The new temporary password.

Example

{
   "id":123456,
   "event":"user_reset_password",
   "target":{
      "type":"User",
      "id":123456
   },
   "body":{
      "password":"3b0d5db9"
   }
}