API Reference / Finance - Budgets

Archive budget

post https://api.intelig.ai/api/v1/intelig/budgets/{budgetId}/archive

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

Archives an ACTIVE budget (makes it read-only)

Example request

curl -X POST "https://api.intelig.ai/api/v1/intelig/budgets/1/archive" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Path parameters

NameTypeRequiredDescription
budgetId integer (int64) yes

Response 200

application/json · ApiResponseVoid

FieldTypeDescription
success boolean
message string
data object

Status codes

  • 200 — Budget archived successfully
  • 400 — Budget is not in ACTIVE status
  • 401 — Not authenticated
  • 403 — Insufficient permissions to access finance pillar
  • 404 — Budget 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.