API Reference / Strategy - Initiatives

Update initiative timing

patch https://api.intelig.ai/api/v1/intelig/strategy/initiatives/{id}/timing

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

Updates an initiative's start date, end date, target quarter, or target year

Example request

curl -X PATCH "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/1/timing" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "startDate": "2026-02-01",
    "endDate": "2026-07-31",
    "targetQuarter": "Q3",
    "targetYear": 2026
  }'

Path parameters

NameTypeRequiredDescription
id integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
startDate string no Updated start date in ISO format Example: 2026-02-01
endDate string no Updated end date in ISO format Example: 2026-07-31
targetQuarter string no Target quarter for delivery Example: Q3
targetYear integer (int32) no Target year for delivery Example: 2026

Response 200

application/json · ApiResponseInitiativeDto

FieldTypeDescription
success boolean
message string
data InitiativeDto Initiative details response

Status codes

  • 200 — Initiative timing updated successfully
  • 400 — Invalid date format or request body
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access strategy pillar
  • 404 — Initiative 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.