Two Minute Reports Logo
Connectors

List connectors

List the connectors a team currently uses.
GET /teams/{teamId}/connectors

Returns the connectors in use by the team — one connector summary per connector type, with connection and enabled-account counts. Results are sorted by name.

Authentication: Bearer token · Role: viewer · Permission:connectors:read · Rate limit: default (120 / 60s)

Path parameters

teamId
string · uuid v7 required
The team whose connectors to list.

Request

curl https://api.twominutereports.com/v1/teams/0190f8b0-1a2b-7c3d-8e4f-5a6b7c8d9e0f/connectors \
  -H "Authorization: Bearer tmrc_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"

Response

Returns an array of connector objects.

{
  "success": true,
  "data": [
    {
      "id": "fads",
      "name": "Facebook Ads",
      "connectionCount": 2,
      "enabledAccountCount": 5
    },
    {
      "id": "gadw",
      "name": "Google Ads",
      "connectionCount": 3,
      "enabledAccountCount": 4
    }
  ]
}
Copyright © 2026