API Reference / Finance - Budget Items
Bulk create budget items
post
https://api.intelig.ai/api/v1/intelig/budgets/{budgetId}/items/bulk
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: bulkCreateItems
Creates multiple budget items at once (for import or generate from contributors)
Example request
curl -X POST "https://api.intelig.ai/api/v1/intelig/budgets/1/items/bulk" \
-H "Authorization: ApiKey $INTELIG_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"items": "string"
}' Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
budgetId | integer (int64) | yes | — |
Request body
application/json
| Field | Type | Required | Description |
|---|---|---|---|
items | CreateBudgetItemCommandDto[] | yes | List of budget items to create |
Response 200
application/json · ApiResponseBulkCreateResultDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | BulkCreateResultDto | Result of a bulk budget item creation operation |
Status codes
200— Bulk creation completed (may include partial errors)400— Invalid request body401— Not authenticated403— Insufficient permissions to access finance pillar404— 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.