List all teams
GET/v2/teams
Returns all teams in your organization.
Response Structure
The response includes:
object- Always “list”data- Array of team objects
Team Object
Each team includes:
id- Unique team identifiername- Team display namecolor- Team color in hex formaticon- Team icon (emoji, predefined, or external URL)members- Array of admin IDs who are members of this team
Example Response
{
"object": "list",
"data": [
{
"object": "team",
"id": "507f1f77bcf86cd799439011",
"name": "Support Team",
"color": "#3B82F6",
"icon": {
"value": "👥",
"type": "emoji"
},
"members": ["5fef50c5e9458a0012f82456", "5fef50c5e9458a0012f82457"]
}
]
}
Version Availability
This endpoint is only available in API version 2026-01-01.nova and newer.
List all teams
curl https://do.featurebase.app/v2/teams \
-H "Authorization: Bearer $FEATUREBASE_API_KEY"{
"data": [
{
"id": "507f1f77bcf86cd799439011",
"color": "#3B82F6",
"icon": {
"type": "emoji",
"value": "👥"
},
"members": [
"5fef50c5e9458a0012f82456",
"5fef50c5e9458a0012f82457"
],
"name": "Support Team",
"object": "team"
}
],
"object": "list"
}Returns Examples
{
"data": [
{
"id": "507f1f77bcf86cd799439011",
"color": "#3B82F6",
"icon": {
"type": "emoji",
"value": "👥"
},
"members": [
"5fef50c5e9458a0012f82456",
"5fef50c5e9458a0012f82457"
],
"name": "Support Team",
"object": "team"
}
],
"object": "list"
}