Skip to main content
GET
/
api
/
campaigns
/
team-performance
Get team performance metrics for campaigns
curl --request GET \
  --url https://your-instance.example.com/api/campaigns/team-performance \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "userId": "64ee9a8b1e7f2a0011223399",
      "fullName": "Alex Rep",
      "campaigns": 6,
      "sent": 1480,
      "successRate": "98.7%"
    },
    {
      "userId": "64ee9a8b1e7f2a001122339a",
      "fullName": "Sam Closer",
      "campaigns": 4,
      "sent": 920,
      "successRate": "99.5%"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Team performance returned

success
boolean
data
object[]