Loading...
GET https://api.3seventy.com/api/v2.1/account/{accountId}/search-for-tn
Description
Gets the results of all of the previous telephone number searches on this account.Path Parameters
accountId | integer | The account ID which performed the search. | required |
Response Properties application/json
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Linq;
using ThreeSeventy.Vector.Client;
using ThreeSeventy.Vector.Client.Enums;
using ThreeSeventy.Vector.Client.Models;
public class Program
{
private static void Main(string[] args)
{
const int accountId = XXXX;
var context = new T70Context();
var searchTnRepo = context.Repository<SearchTn>(new { AccountId = accountId });
var list = searchTnRepo.GetAll();
}
}