I'm having trouble with the password change API and can't figure out what I'm doing wrong. I get an "Invalid input" error but can't figure out if that's a password pattern/validation error or if something else is off (I think noticed another area of the API that took a different input format than what I saw in the docs).
Anyway, here's a basic example in Python:
response = requests_session.post("https://my.opalstack.com/api/v0/mariauser/pwdch/", json={
"id": maria_user_uuid,
"password": "Testing123$",
})
Which gives me: {"errors": "Invalid input."}
I tested the same password (and others) in the UI and it it validated fine.
https://my.opalstack.com/api/v0/redoc/#operation/MariaDB%20user%20password%20change
Thanks in advance!