List team members
/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
Team id (team_…).
Query Parameters
Case-insensitive substring match on the member's name or email, applied server-side. LIKE wildcards are matched literally. Max 200 characters.
Response Body
Team administrator: may rename the team and manage its ordinary members.
When they joined THIS team.
Null (together with email) for someone who has left the organization.
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())