Update password for the user. A logto-verification-id header is required when the user has at least one security verification method: password, primary email, or primary phone. The header can be omitted only when the user has none of these methods and is setting the first password.
POST
/api/my-account/password
curl \
--request POST 'https://[tenant_id].logto.app/api/my-account/password' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"password":"string"}'
Request examples
{
"password": "string"
}