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

# Update Throttle Binding

> Assign a throttle profile to a resource for rate limiting.



## OpenAPI

````yaml PUT /api/v1/access-control/throttle-binding
openapi: 3.1.0
info:
  title: Rigbox Public API
  description: >-
    Gateway-owned public API for Rigbox. The gateway composes its local
    lifecycle API with service-owned exported specs.
  contact:
    name: Rigbox
    url: https://rigbox.dev
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://api.rigbox.dev
    description: Production gateway
security: []
tags:
  - name: Workspaces
  - name: CLI
  - name: Observability
  - name: Auth
  - name: API Keys
  - name: Access Control
  - name: Apps
  - name: App Catalog
  - name: Logs
  - name: AI
  - name: Tools
  - name: Snapshots
  - name: SSH Keys
  - name: Templates
  - name: Setup Scripts
  - name: Service Specs
  - name: Deploy
  - name: Community
  - name: User Settings
  - name: Roadmap
  - name: System
paths:
  /api/v1/access-control/throttle-binding:
    put:
      tags:
        - Access Control
      summary: Set a resource's throttle binding.
      description: Bind a throttle (rate-limit) preset to a resource.
      operationId: put_throttle_binding
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateThrottleBindingRequest'
        required: true
      responses:
        '200':
          description: Throttle binding updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThrottleBindingResponse'
      security:
        - bearer: []
components:
  schemas:
    UpdateThrottleBindingRequest:
      type: object
      required:
        - resource
      properties:
        profile:
          type:
            - string
            - 'null'
        resource:
          type: string
    ThrottleBindingResponse:
      type: object
      required:
        - resource
      properties:
        profile:
          type:
            - string
            - 'null'
        resource:
          type: string
  securitySchemes:
    bearer:
      type: http
      scheme: bearer

````