curl --request PUT \
--url https://{host}/frontend/api/v1/auth/{user-id}/password \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"new-password": "<string>",
"old-password": "<string>",
"password-update-token": "<string>"
}
'