API Reference / Finance - Budget Items

Update budget item cell

patch https://api.intelig.ai/api/v1/intelig/budgets/{budgetId}/items/{itemId}

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

Updates a single field of a budget item (inline editing)

Example request

curl -X PATCH "https://api.intelig.ai/api/v1/intelig/budgets/1/items/1" \
  -H "Authorization: ApiKey $INTELIG_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "field": "rateAmount",
    "value": 15000
  }'

Path parameters

NameTypeRequiredDescription
budgetId integer (int64) yes
itemId integer (int64) yes

Request body

application/json

FieldTypeRequiredDescription
field string yes Name of the field to update Example: rateAmount
value object no New value for the field (null to clear) Example: 15000

Response 200

application/json · ApiResponseBudgetItemResponseDto

FieldTypeDescription
success boolean
message string
data BudgetItemResponseDto Budget line item details

Status codes

  • 200 — Budget item cell updated successfully
  • 400 — Invalid field name or value
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access finance pillar
  • 404 — Budget or item not found
  • 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.