Get contributor details
get
https://api.intelig.ai/api/v1/intelig/contributors/{id}
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getContributor
Returns a single contributor with position information
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/contributors/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Response 200
application/json · ApiResponseContributorDetailDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ContributorDetailDto | Detailed contributor with position information |
Status codes
200— Contributor details retrieved successfully401— Not authenticated403— Insufficient permissions to access code intelligence pillar404— Contributor 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.