Skip to content

ResetPassword

Use this endpoint to start the password recovery process for an organization user.

The endpoint sends a password reset email to the email address registered for the user identified by logonId. It does not require a form token, captcha, or email address in the request. A successful request has no response body.

Required Scope

login

Parameters

Parameter Name Description
apiKey A unique key used to authenticate and authorise the calling system.
logonId The user's organization login ID.
culture Optional culture used for the password reset email.

Example Call

1
2
3
4
5
6
7
POST https://mydomain.emakin.com/rest/v1/ResetPassword

{
     "apiKey": "xxxx",
     "logonId": "[email protected]",
     "culture": "en-US"
}
1
HTTP/1.1 204 No Content

If culture is omitted, the default culture is used.