> ## 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.

# Approve Budget Request



## OpenAPI

````yaml POST /v1/budgets/requests/{id}/approve
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/requests/{id}/approve:
    post:
      tags:
        - budgets
      summary: >-
        Approve a budget request (manager): applies the elevated limit for the
        requested window
      operationId: BudgetsController_approve
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````