API Reference / Contributors

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

NameTypeRequiredDescription
teamId integer (int64) yes ID of the team to list contributors for

Response 200

application/json · ApiResponseListContributorDto

FieldTypeDescription
success boolean
message string
data ContributorDto[]

Status codes

  • 200 — Contributors retrieved successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access code intelligence pillar
  • 404 — Team not found
  • 429 — —

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.