API Reference / Finance - Budgets
Duplicate budget
post
https://api.intelig.ai/api/v1/intelig/budgets/{budgetId}/duplicate
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: duplicateBudget
Creates a copy of an existing budget
Example request
curl -X POST "https://api.intelig.ai/api/v1/intelig/budgets/1/duplicate?newName=string" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
budgetId | integer (int64) | yes | — |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
newName | string | yes | — |
Response 200
application/json · ApiResponseLong
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | integer (int64) | — |
Status codes
200— Budget duplicated successfully401— Not authenticated403— Insufficient permissions to access finance pillar404— Source budget not found429— —
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.