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

SendUserVerificationRequestAsync() 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 SendUserVerificationRequestAsync ( long userId, long identityId ) : Task
userId long
identityId long
return Task
        public async Task<IndividualUserIdentityResponse> SendUserVerificationRequestAsync(long userId, long identityId)
        {
            return await GenericPutAsync<IndividualUserIdentityResponse>(string.Format("users/{0}/identities/{1}/request_verification.json", userId, identityId));
        }