Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Initiates password reset process, if email is correct

Resource Information

 

Response formats 
Response code 
Requires authentication? 
HTTP Method 

Parameters 

Name TypeDescription

email 

string

email for reset process action

cb

function

callback function


Example

this.requestPasswordReset = function(email, cb) {
  return _request( {
    method: 'POST',
    url: '/user/request_password_reset',
    data: {email: email},
    callback: cb
  });
};

 

 

  • No labels
Quatrix JavaSctipt APIs QJA