Loading...
GET https://api.3seventy.com/api/v2.1/reference/contact-attribute-category
Description
Lists all categories for contact attributes.Response Properties application/json
using System;
using System.Collections.Generic;
using System.Linq;
using ThreeSeventy.Vector.Client;
using ThreeSeventy.Vector.Client.Models;
public class Program
{
private static void Main(string[] args)
{
var context = new T70Context();
var contactAttCatRepo = context.Repository<ContactAttributeCategory>();
var list = contactAttCatRepo.GetAll();
}
}