Skip to main content
GET
/
team
/
member
Get all team members
curl --request GET \
  --url https://api.sendx.io/api/v1/rest/team/member \
  --header 'X-Team-ApiKey: <api-key>'
[
  {
    "id": "member_JkL012MnO345PqR678",
    "email": "team.member@company.com",
    "userName": "johndoe",
    "fullName": "John Doe",
    "avatarUrl": "https://example.com/avatar.jpg",
    "created": "2023-11-07T05:31:56Z",
    "updated": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-Team-ApiKey
string
header
required

Team API key for authentication. Find your API key in SendX Settings → Team API Key.

Example:

X-Team-ApiKey: your_team_api_key_here

Response

✅ Tags retrieved successfully

id
string
Example:

"member_JkL012MnO345PqR678"

email
string<email>
Example:

"team.member@company.com"

userName
string
Example:

"johndoe"

fullName
string
Example:

"John Doe"

avatarUrl
string<uri>
Example:

"https://example.com/avatar.jpg"

created
string<date-time>
updated
string<date-time>
I