API Reference / Finance - Initiatives
Delete an initiative's revenue target
delete
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: deleteRevenueTarget
Removes the revenue target set against this initiative. The initiative keeps its cost data; only the target it was being measured against goes, so ROI stops being computed for it. Returns 204 with no body.
Example request
curl -X DELETE "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 · object
No body.
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.