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

DeleteUserIdentity() public method

public DeleteUserIdentity ( long userId, long identityId ) : bool
userId long
identityId long
return bool
        public bool DeleteUserIdentity(long userId, long identityId)
        {
            return GenericDelete(string.Format("users/{0}/identities/{1}.json", userId, identityId));
        }