Skip to main content
Returns all active SDR profiles in the workspace, including whether each SDR’s Gmail is connected via Composio.
curl https://app.leadterra.co/v1/sdrs \
  -H "Authorization: Bearer sk_live_your_key"

Response

{
  "data": [
    {
      "id": "sdr_id",
      "name": "Jordan Lee",
      "email": "jordan@example.com",
      "gmailConnected": true,
      "gmailEmail": "jordan.sdr@gmail.com"
    }
  ]
}
data[].id
string
SDR profile identifier.
data[].name
string
SDR display name.
data[].email
string
SDR email address.
data[].gmailConnected
boolean
Whether the SDR’s Gmail is connected and active via Composio.
data[].gmailEmail
string
The connected Gmail address, or null if not connected.