API Reference / Contributors

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

NameTypeRequiredDescription
id integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
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

FieldTypeDescription
success boolean
message string
data ContributorDetailDto Detailed contributor with position information

Status codes

  • 200 — Contributor profile updated successfully
  • 400 — Invalid request body
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access code intelligence pillar
  • 404 — Contributor 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.