Update contributor profile
patch
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: updateProfile
Updates editable fields: name, email, visibility
Example request
curl -X PATCH "https://api.intelig.ai/api/v1/intelig/contributors/1" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"displayName": "Jane Doe",
"isVisible": true
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
displayName | string | no | User-editable display name override (never overwritten by GitHub sync) Example: Jane Doe |
isVisible | boolean | no | Visibility in insights Example: true |
Response 200
application/json · ApiResponseContributorDetailDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ContributorDetailDto | Detailed contributor with position information |
Status codes
200— Contributor profile updated successfully400— Invalid request body401— 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.