teams
Get team
Retrieves the full details of a specific team by its unique identifier (UUID). Returns the team's name, handle, description, avatar URL, and metadata such as creation and update timestamps.
Use this endpoint to load complete data for a single team.
get/teams/{id}
Path parameters
idstring uuid required
Example:123e4567-e89b-12d3-a456-426614174000
Team identifier.
Response
Team details
Example response
{
"data": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"type": "team",
"links": {
"self": "https://api.productboard.com/v2/teams/123e4567-e89b-12d3-a456-426614174000",
"members": "https://api.productboard.com/v2/teams/123e4567-e89b-12d3-a456-426614174000/members",
"html": "https://example.productboard.com/settings/teams/12"
},
"fields": {
"name": "Product Team",
"handle": "productteam",
"description": "Team responsible for product development",
"avatarUrl": "https://cdn.productboard.com/teams/avatars/123/medium.png"
},
"createdAt": "2025-01-01T10:00:00Z",
"updatedAt": "2025-01-15T14:30:00Z"
}
}