Skip to content
GET /team/{id}/member

The team's roster, cursor-paginated — where a team row's `member_count` leads. A team row carries only a bounded `member_preview`, never the roster itself, so this is how a client reads who is in a team of any size. 404 when the team does not exist, which keeps an empty team distinguishable from a missing one.

Path Parameters

idstring
required·

Team id (team_…).

Query Parameters

qstring

Case-insensitive substring match on the member's name or email, applied server-side. LIKE wildcards are matched literally. Max 200 characters.

Response Body

next_cursorstring,null
prev_cursorstring,null
resultobject[]
emailstring,null
is_adminboolean

Team administrator: may rename the team and manage its ordinary members.

joined_atstring · date-time

When they joined THIS team.

namestring,null

Null (together with email) for someone who has left the organization.

user_idstring

Elaichi user id (usr_…).

curl -X GET 'https://api.elaichi.ai/team/<id>/member' \
  -H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.elaichi.ai/team/<id>/member', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
import os
import requests

url = "https://api.elaichi.ai/team/<id>/member"
headers = {
    "Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
    "Content-Type": "application/json",
}

response = requests.get(url, headers=headers)
print(response.json())