API Reference / Strategy - Initiative Discovery

Reject a candidate

post https://api.intelig.ai/api/v1/intelig/strategy/discovery/candidates/{candidateId}/reject

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: rejectCandidate

Marks the candidate as not a real initiative. It is kept for audit and will not be re-proposed.

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/discovery/candidates/1/reject" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "reason": "Dependency-bump noise, not a body of work"
  }'

Path parameters

NameTypeRequiredDescription
candidateId integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
reason string no Why this candidate is not a real initiative. Example: Dependency-bump noise, not a body of work

Response 200

application/json · ApiResponseVoid

FieldTypeDescription
success boolean
message string
data object

Status codes

  • 200 — OK
  • 401 — —
  • 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.