Skip to main content

Change password

Post change password#

  • Url: https://velo-europe.de/api/{lang}/users/changes/passwords
  • Method: POST
  • Authentication required
  • Content-Type: application/json

Request body#

  • password - string - required - must have one capital letter, one special char, one number, min 8 chars
{
"password": "12MV#fdasxffl"
}

Response body#

{
"notification": {
"type": "success",
"title": "Erfolg",
"message": "Password has been changed"
}
}

Example request#

curl --location --request POST 'https://velo-europe.de/api/de/users/changes/passwords' \
--header 'Authorization: Bearer MTdmNmFhMDQyMWM3MGFhYzFiNTM5ZDNmYWU0OTA5N2MzOWQxZGE4NzcyMGZmMGNkZTBlMWQwNjczOGNkMDMwYQ' \
--header 'Content-Type: application/json' \
--data-raw '{
"password": "12MV#fdasxffl"
}'