public IndividualUserIdentityResponse sendUserVerificationRequest(long userId, long identityId) throws ZendeskApiException {
User nullUser = new User();
try {
return genericPut(getUserIdentityIdUri(userId, identityId) + "/request_verification.json", nullUser, IndividualUserIdentityResponse.class);
} catch (Exception e) {
throw new ZendeskApiException("Sending of verification email for identity id " + identityId + " of user id " + userId + " failed", e);
}
}