API Reference / Strategy - Initiative Ownership

Get ownership patterns for an initiative

get https://api.intelig.ai/api/v1/intelig/strategy/initiatives/{initiativeId}/ownership-patterns

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

Returns all ownership patterns configured for the specified initiative. Patterns define how commits are attributed to this initiative.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/strategy/initiatives/1/ownership-patterns" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
initiativeId integer (int64) yes Initiative ID

Response 200

application/json · ApiResponseListOwnershipPatternDto

FieldTypeDescription
success boolean
message string
data OwnershipPatternDto[]

Status codes

  • 200 — List of ownership patterns
  • 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.