Skip to content

Password Reset

Create

Example request:

{
"data": {
"type": "identity",
"attributes": {
"email": "[email protected]"
}
}
}

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

ParameterDescription
identity.emailEmail 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

ParameterDescription
identity.reset_password_tokenToken sent via Email
identity.passwordNew password of the identity