> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wardin.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Budget



## OpenAPI

````yaml PATCH /v1/budgets/{id}
openapi: 3.0.0
info:
  title: Wardin API
  description: AI governance & observability platform — external REST API
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /v1/budgets/{id}:
    patch:
      tags:
        - budgets
      summary: Update budget limit; syncs to Redis immediately
      operationId: BudgetsController_update
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateBudgetDto'
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  schemas:
    UpdateBudgetDto:
      type: object
      properties:
        budgetUsd:
          type: number
          example: 100
          description: New monthly budget in USD
      required:
        - budgetUsd
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````