Team

A team can have many campaigns. Often agencies will have a team for each client. Use teams to orgaize multiple campaigns into a single group. Some people have a single team for all their campaigns whi

Create A Team

name - string - team name logo - string - url to team logo domain - string - url to team website google_oauth - json - google oauth json from google cloud about - string - about the team

bash
curl -X POST https://api.supersend.io/v1/auto/team -H "Authorization: Bearer <API_KEY>" -H "Content-Type: application/json" --data '{
  "domain": "http://supersend.io",
  "name": "Super Send",
  "about": "We create sales tools",
}'
bash
curl -X GET 'https://api.supersend.io/v1/auto/team?all=false' -H "Authorization: Bearer <API_KEY>" -H "Content-Type: application/json"

Get Teams

bash
curl -X PUT https://api.supersend.io/v1/auto/team/<TeamId> -H "Authorization: Bearer <API_KEY>" -H "Content-Type: application/json" --data '{
  "name": "Team Super",
  "logo": "https://supersend.io/logo.svg",
  "domain": "https://supersend.io",
  "about": "We make outbound super!"
}'

Update a Team