Aller au contenu

SetPassword

POST
/api/auth/password/set
curl --request POST \
--url https://example.com/api/auth/password/set \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "currentPassword": "example", "newPassword": "example" }'
Media type application/json
object
currentPassword
string
nullable
newPassword
string
nullable
Example generated
{
"currentPassword": "example",
"newPassword": "example"
}

OK