Skip to main content
GET
/
team
/
member
/
{identifier}
Get a team member by ID
curl --request GET \
  --url https://api.sendx.io/api/v1/rest/team/member/{identifier} \
  --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

Path Parameters

identifier
string
required

Resource identifier with prefix (e.g., contact_BnKjkbBBS500CoBCP0oChQ)

Format: <prefix>_<22-character-id>

Example:

"contact_BnKjkbBBS500CoBCP0oChQ"

Response

✅ Team member 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