Skip to main content
GET
/
team
/
senders
Get Team Senders
curl --request GET \
  --url https://api.lemlist.com/api/team/senders \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "userId": "usr_5GdFEgSLCN4n9uaMY",
    "campaigns": [
      {
        "_id": "cam_XeLi45vzbAAMcwE9w",
        "name": "Onboarding",
        "status": "paused",
        "sendingChannels": [
          "email",
          "manual",
          "linkedinVisit"
        ]
      },
      {
        "_id": "cam_jgQF6raCqZFpRhXic",
        "name": "Community Launch",
        "status": "running",
        "sendingChannels": [
          "email",
          "manual",
          "linkedinVisit"
        ]
      },
      {
        "_id": "cam_uZN54wByB9fN4Egak",
        "name": "Email Warmup Test",
        "status": "ended",
        "sendingChannels": [
          "email",
          "manual",
          "linkedinVisit"
        ]
      },
      {
        "_id": "cam_gdFao7vTMuxwtsdzR",
        "name": "Product Launch Campaign",
        "status": "draft",
        "sendingChannels": [
          "email",
          "manual",
          "linkedinVisit"
        ]
      }
    ]
  },
  {
    "userId": "usr_5eQFBL8KgTjhbATT7",
    "campaigns": [
      {
        "_id": "cam_inoaxzRkxC6RmFC7S",
        "name": "WhatsApp Outreach",
        "status": "draft",
        "sendingChannels": [
          "email",
          "whatsappMessage"
        ]
      },
      {
        "_id": "cam_DkMxX9HCeWbv7jsYr",
        "name": "WhatsApp Test Campaign",
        "status": "ended",
        "sendingChannels": [
          "email",
          "whatsappMessage"
        ]
      }
    ]
  },
  {
    "userId": "usr_AzyCDxe92WNSrGkPz",
    "campaigns": [
      {
        "_id": "cam_CSRnRHoZxe6b3Ste3",
        "name": "Networking",
        "status": "running",
        "sendingChannels": [
          "email",
          "linkedinSend",
          "linkedinVisit",
          "linkedinInvite"
        ]
      },
      {
        "_id": "cam_j3TKRt2Mx5pmeMxAu",
        "name": "Product Tools Campaign",
        "status": "paused",
        "sendingChannels": [
          "email",
          "linkedinSend",
          "linkedinVisit",
          "linkedinInvite"
        ]
      }
    ]
  }
]
This endpoint uses the User object.
This endpoint retrieves a list of all senders in the team along with their associated campaigns. The response includes details for each sender, such as their user ID and a list of campaigns they are involved in. Each campaign object contains the campaign ID, name, status, and the various sending channels used (e.g., LinkedIn, email). This information is useful for tracking campaign participation and channel utilization by different team members.

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

state
enum<string>

Filter by campaign's state (running, paused, draft, ended, archived, errors)

Available options:
running,
paused,
draft,
ended,
archived,
errors

Response

Success

userId
string
campaigns
object[]