Password

Password routes.

Initiate a password reset

Initiate a password reset for a user.

Request
Request Body schema: application/json

A JSON object containing authentication information.

user
required
string

The mail or alias of the user.

Responses
200

Successful operation

422

Unprocessable Content

post/password/reset/initiate
Request samples
application/json
{
  • "user": "titan@nordantech.com"
}
Response samples
application/json
{
  • "success": true,
  • "hash": "8739602554c7f3241958e3cc9b57fdecb474d508",
  • "data": { },
  • "timestamp": 1655139105008
}

Finish a password reset

Finish a password reset link.

Request
path Parameters
reset
required
string or integer

The id/hash of the reset.

Request Body schema: application/json

A JSON object containing activation information.

password
required
string

The new password of the user.

password_confirmation
required
string

The confirmation of the new password of the user.

Responses
200

Successful operation

422

Unprocessable Content

post/password/reset/{reset}/finish
Request samples
application/json
{
  • "password": "WoWar1chUnsicher?",
  • "password_confirmation": "WoWar1chUnsicher?"
}
Response samples
application/json
{
  • "success": true,
  • "hash": "e55a5abfaa66f87de50f9bbcb170f49c4bfae6ab",
  • "data": {
    },
  • "timestamp": 1737120214564
}