ForgotPassword

From ePrize Developers Wiki

Jump to: navigation, search

Summary

Initiates forgot password flow to send the password change email.

Resource

POST api/v1/forgotPassword

Parameters

  • emailAddress

Example Request Body:

   {
       "email": "jon.doe@helloworld.com"
   }

Example Response: Success

   {
       "success": true
   }

Example Response: Email Address not provided

   {
       "Error": {
           "Code": "error.business.Validation",
           "Message": "Error for attribute: Email Address\nThis information is required.\n"
       }
   }
Personal tools