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

DeleteUserIdentityAsync() public method

public DeleteUserIdentityAsync ( long userId, long identityId ) : Task
userId long
identityId long
return Task
        public async Task<bool> DeleteUserIdentityAsync(long userId, long identityId)
        {
            return await GenericDeleteAsync(string.Format("users/{0}/identities/{1}.json", userId, identityId));
        }