List all teams
get
https://api.intelig.ai/api/v1/intelig/teams
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getTeams
Returns all teams for the current organization
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/teams" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Response 200
application/json · ApiResponseListTeamDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | TeamDto[] | — |
Status codes
200— Teams retrieved successfully401— Not authenticated403— Insufficient permissions to access code intelligence pillar429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.