Note: The password stored in the database is further encrypted by the backend.
{
"old_password_encrypted": "string",
"new_password_encrypted": "string"
}
curl --location --request POST 'https://192.168.88.11:9781/bvcsp/v1/auth/password' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"old_password_encrypted": "string",
"new_password_encrypted": "string"
}'
{
"code": 0,
"msg": "string"
}