List contributors by team
get
https://api.intelig.ai/api/v1/intelig/contributors/by-team
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getContributorsByTeamId
Returns all contributors assigned to the specified team
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/contributors/by-team?teamId=1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
teamId | integer (int64) | yes | ID of the team to list contributors for |
Response 200
application/json · ApiResponseListContributorDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ContributorDto[] | — |
Status codes
200— Contributors retrieved successfully401— Not authenticated403— Insufficient permissions to access code intelligence pillar404— Team not found429— —
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.