``` res, httpRes, err := s.kapi.IdentityAPI. Pat...
# general
c
Copy code
res, httpRes, err := s.kapi.IdentityAPI.
		PatchIdentity(ctx, request.AccountId).
		JsonPatch([]kratos.JsonPatch{
			{
				Op:    "replace",
				Path:  "/credentials/password/config/password",
				Value: request.Password,
			},
		}).
		Execute()
that seems to not do anything, no error but the password doesn't seem to be changed, any ideas?