APIs

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 while others like to have one "team" per BDR / SDR.


Create A Team

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",
}'

Get Teams

all - boolean - default is false - Get all the teams associated with the Organization (all=true), or just the teams associated with the user (all=false).

If you add the team, you are automatically added as an admin of that team but will need to add other users to the team as members for them to see it.

curl -X GET 'https://api.supersend.io/v1/auto/team?all=false' \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json"

Update 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

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!"
}'
Previous
Messages