teamId (primary team) and teamIds (all teams). Use this API to resolve those ids to team names and metadata.
When to use: Sync your directory with TapTalent teams, display which team a user belongs to, or filter or report by team.
Response fields: Each team returns an id, name, createdAt timestamp, createdBy (workspace user id of the user who created the team, or null if unknown), and userCount (number of users in that team). No pagination is applied to the list endpoint; all teams for the company are returned.
List Teams
Returns every team in your workspace. Use this to build a local map of team id → name, or to show a list of teams in your UI.GET /teams
Authentication
Requires API key authentication viaAuthorization: Bearer YOUR_API_KEY header.
Example Request
Example Response
Get Team
Returns one team byteamId. Use this when you have a team id from a user’s teamId or teamIds and need the team’s name or details. The team must belong to your workspace; otherwise the API returns 404.
GET /teams/:teamId
Authentication
Requires API key authentication viaAuthorization: Bearer YOUR_API_KEY header.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
teamId | string | Yes | The unique identifier of the team |
Team Object (list and get-one)
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier of the team |
name | string | Team name |
createdAt | number | Timestamp when the team was created |
createdBy | string or null | Workspace user id of the user who created the team. Resolve with GET /users/:userId to get creator details. May be null for older records. |
userCount | number | Total number of users in the team. |
Example Request
Example Response
Error Response (404)
When the team is not found or does not belong to your workspace:Related
- Workspace Users — List and fetch users; each user includes
teamIdandteamIdsthat you can resolve with this API. - API Reference Overview — Base URL and authentication for all partner endpoints.
.png?fit=max&auto=format&n=lKy84_BssSCy2hcz&q=85&s=ac7c949427cc2893306f6036415f087e)