Appoint or remove a team administrator
/team/{id}/members/{userId}
Toggles team-admin rights for one member. Team administrators may rename their team and manage its ordinary members, and may manage team-scoped connections. Requires `team:manage` — a team administrator cannot appoint another.
Path Parameters
Team id (team_…).
User id (usr_…) of a team member.
Request Body
Response Body
How many of them administer the team, counted the same way.
The first few administrators, with display names already resolved, so a client can name them without a lookup per row. At most 5 — a preview for a hover, never the set; admin_count is the size. name and email are both null for someone who has left the organization.
Always true here.
Team id (team_…).
How many people are in the team, counted server-side with one aggregate. This row carries no roster array to measure — GET /team/{id}/member is the roster.
The same, for the first few members (administrators included, flagged by is_admin). member_count is the size; GET /team/{id}/member is the full, paginated roster.
Unique within the organization.
curl -X PATCH 'https://api.elaichi.ai/team/<id>/members/<userId>' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"is_admin":true}'const body = {
"is_admin": true
};
const response = await fetch('https://api.elaichi.ai/team/<id>/members/<userId>', {
method: 'PATCH',
headers: {
'Authorization': 'Bearer ' + process.env.ELAICHI_API_TOKEN,
'Content-Type': 'application/json',
},
body: JSON.stringify(body),
});
const data = await response.json();
console.log(data);import os
import requests
url = "https://api.elaichi.ai/team/<id>/members/<userId>"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
payload = {
"is_admin": True
}
response = requests.patch(url, headers=headers, json=payload)
print(response.json())