Teams API¶
Manage teams in Tessera.
List Teams¶
Response¶
{
"results": [
{
"id": "team-uuid",
"name": "data-platform",
"created_at": "2025-01-01T10:00:00Z",
"member_count": 5,
"asset_count": 25
}
]
}
Get Team¶
Response¶
{
"id": "team-uuid",
"name": "data-platform",
"created_at": "2025-01-01T10:00:00Z",
"members": [
{
"id": "user-uuid",
"name": "John Doe",
"email": "john@example.com",
"role": "team_admin"
}
]
}
Create Team¶
Request Body¶
Response¶
Update Team¶
Request Body¶
Delete Team¶
Returns 204 No Content on success.
Warning
Deleting a team will orphan its assets. Reassign assets first.
Get Team Assets¶
List all assets owned by the team.
Get Team Registrations¶
List all contracts the team is registered as a consumer of.
API Keys¶
API keys are managed via the dedicated API Keys endpoint.
Create keys with the team ID:
See API Keys for full documentation.