ZendeskApi_v2.Requests.Users.SendUserVerificationRequest C# (CSharp) Method

SendUserVerificationRequest() public method

This sends a verification email to the user, asking him to click a link in order to verify ownership of the email address
public SendUserVerificationRequest ( long userId, long identityId ) : IndividualUserIdentityResponse
userId long
identityId long
return IndividualUserIdentityResponse
        public IndividualUserIdentityResponse SendUserVerificationRequest(long userId, long identityId)
        {
            return GenericPut<IndividualUserIdentityResponse>(string.Format("users/{0}/identities/{1}/request_verification.json", userId, identityId));
        }