Password Reset
Create
Example request:
{  "data": {    "type": "identity",    "attributes": {    }  }}This endpoint returns nothing but 204 no content.
This endpoint sends password reset instructions to the email address provided.
HTTP Request
POST /auth/reset_password
Arguments
| Parameter | Description | 
|---|---|
| identity.email | Email address of the identity | 
Update
Example request:
{  "data": {    "type": "identity",    "attributes": {      "reset_password_token": "***",      "password": "password"    }  }}Example response:
{  "data": {    "id": "98815bd8-f3e6-41ec-8c4a-25a431ac6ce4",    "type": "identity",    "attributes": {      ...    }  }}This endpoint changes the identity’s password.
HTTP Request
PUT /auth/reset_password
Arguments
| Parameter | Description | 
|---|---|
| identity.reset_password_token | Token sent via Email | 
| identity.password | New password of the identity |