API Reference / Strategy - Initiative Ownership Bulk

Import ownership patterns

post https://api.intelig.ai/api/v1/intelig/strategy/ownership/import

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

Bulk imports ownership patterns from Claude-generated JSON. This is used by the ownership mapping wizard to import patterns for multiple initiatives at once. The operation is idempotent - existing patterns are skipped with warnings rather than causing failures.

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/strategy/ownership/import" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "initiatives": "string"
  }'

Request body

application/json

FieldTypeRequiredDescription
initiatives InitiativeOwnershipImportDto[] yes List of initiatives with their ownership patterns to import

Response 200

application/json · ApiResponseOwnershipImportResponse

FieldTypeDescription
success boolean
message string
data OwnershipImportResponse Response from a bulk ownership pattern import operation

Status codes

  • 200 — Import completed (check response for warnings)
  • 400 — Invalid request body
  • 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.