Get team
Fetch a team by slug (staff or team member).
Endpoint
GET /api/v1/teams/{team_slug}Team MemberStaff
Usage
curl --header "Authorization: Bearer $GHIT_API_TOKEN" "$GHIT_API_URL/v1/teams/platform"Success
200 OK with team record.
{ "uuid": "...", "slug": "platform", "name": "Platform" }Errors
404 Not Foundwhen team slug does not exist.
Common auth errors are documented on the API overview page.