API Reference / Strategy - Roadmaps

Unlink initiative from quarter

delete https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/{id}/quarters/{quarter}/initiatives/{initiativeId}

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

Removes the association between an initiative and a roadmap quarter

Example request

curl -X DELETE "https://api.intelig.ai/api/v1/intelig/strategy/roadmaps/1/quarters/string/initiatives/1" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
id integer (int64) yes
quarter string yes
initiativeId integer (int64) yes

Response 200

application/json · ApiResponseRoadmapResponse

FieldTypeDescription
success boolean
message string
data RoadmapResponse Roadmap with quarters, milestones, and scope information

Status codes

  • 200 — Initiative unlinked from quarter successfully
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Roadmap, quarter, or initiative link 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.