Create team
/team
Requires `team:manage`. Team names are unique within the organization. The caller becomes this team's administrator immediately — the same auto-ownership every other created resource gets — whether or not their own id also appears in `member_ids`. `member_ids` optionally adds other existing organization members (`GET /member`) as ordinary members in the same call; an id that is not already an org member fails the whole call before anything is created. To promote one of them to administrator too, follow up with `PATCH /team/:id/members/:userId`. There is no way to create a team you do not administer: to stand one up for somebody else, create it, appoint them, then remove yourself with `DELETE /team/:id/members/:userId` — in that order, since removing the last administrator leaves a team only a `team:manage` holder can manage.
Request Body
User ids (usr_…) of existing organization members to add alongside the caller. Optional.
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 POST 'https://api.elaichi.ai/team' \
-H 'Authorization: Bearer $ELAICHI_API_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"name":"your_name","member_ids":[]}'const body = {
"name": "your_name",
"member_ids": []
};
const response = await fetch('https://api.elaichi.ai/team', {
method: 'POST',
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"
headers = {
"Authorization": f"Bearer {os.environ['ELAICHI_API_TOKEN']}",
"Content-Type": "application/json",
}
payload = {
"name": "your_name",
"member_ids": []
}
response = requests.post(url, headers=headers, json=payload)
print(response.json())