Skip to main content
POST
/
auth
/
v1
/
rs
/
password
/
reset
Reset Password and return tokens
curl --request POST \
  --url https://z52mnqg347.execute-api.eu-west-3.amazonaws.com/main/auth/v1/rs/password/reset \
  --header 'Authorization: Bearer <token>' \
  --header 'content-type: <content-type>' \
  --data '
{
  "token": "cmVzZXQtcGFzc3dvcmQtdG9rZW4tZXhhbXBsZS1zdHJpbmc...",
  "password": "Str0ng3rP@ssw0rd!"
}
'
This response has no body data.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

content-type
string
required

Content type, must be "application/json".

Allowed value: "application/json"

Body

application/json
token
string
required

Token used for resetting the user password.

Example:

"cmVzZXQtcGFzc3dvcmQtdG9rZW4tZXhhbXBsZS1zdHJpbmc..."

password
string
required

Strong password of the user.

Required string length: 8 - 100
Example:

"Str0ng3rP@ssw0rd!"

Response

204 - undefined