/resources/resetpassword

Use this endpoint to reset the password for a resource. The resource will receive a temporary password that you can use for authentication and set a new password using the update resource endpoint.

The entire flow:

  1. Call [POST] /v2/resources/resetpassword with your email in a JSON body, like this:
{
	"email": "[email protected]"
}
  1. The resource should receive an email with a temporary password. Use this password to authenticate using the /auth endpoint. In that response there will be a api-token which you need to use for subsequent authentication.

  2. Last step is to call /resources/me and set the new password for your resource. Note that this endpoint is gated and you need to set the appropriate "Authorization" header to access it, using your e-mail and the API-token from the previous step.

Language
Authorization
Header
Click Try It! to start a request and see the response here!