API Reference / Finance - Initiatives
Get an initiative's revenue target
get
https://api.intelig.ai/api/v1/intelig/finance/initiatives/{initiativeId}/revenue-target
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: getRevenueTarget
Returns the revenue target for an initiative, or 404 if none has been declared
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/finance/initiatives/1/revenue-target" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
initiativeId | integer (int64) | yes | — |
Response 200
application/json · ApiResponseRevenueTargetResponse
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | RevenueTargetResponse | — |
Status codes
200— OK401— —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.