Skip to main content
GET
/
team-data
/
:teamDataId
Get Team by ID
curl --request GET \
  --url https://www.api.baselink.tech/team-data/:teamDataId \
  --header 'bearer: <api-key>'
{
  "team": {},
  "team.id": "<string>",
  "team.name": "<string>",
  "team.description": "<string>",
  "team.members": [
    {}
  ],
  "team.repositories": [
    {}
  ],
  "team.createdAt": "<string>"
}
Retrieve detailed information about a specific team.
team
object
The team object.
team.id
string
The unique identifier of the team.
team.name
string
The name of the team.
team.description
string
The description of the team.
team.members
array
Array of team members.
team.repositories
array
Array of team repositories.
team.createdAt
string
The creation timestamp of the team.