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

# Remove an agent cost catalog override

> Close the negotiated rate as of now. The row stays so calls already priced with it stay explainable; pricing falls back to the global registry rate immediately. `override_id` is the `override.id` the catalog carries. A custom item's id passed here is a 404 — it closes through the items endpoint.



## OpenAPI

````yaml delete /v1/agents/cost-catalog/overrides/{override_id}
openapi: 3.1.0
info:
  title: Hyperline API
  version: 0.0.0
servers:
  - url: https://api.hyperline.co
  - url: https://sandbox.api.hyperline.co
security: []
paths:
  /v1/agents/cost-catalog/overrides/{override_id}:
    delete:
      tags:
        - Agents
      summary: Remove an agent cost catalog override
      description: >-
        Close the negotiated rate as of now. The row stays so calls already
        priced with it stay explainable; pricing falls back to the global
        registry rate immediately. `override_id` is the `override.id` the
        catalog carries. A custom item's id passed here is a 404 — it closes
        through the items endpoint.
      operationId: deleteAgentCostCatalogOverride
      parameters:
        - schema:
            type: string
          required: true
          name: override_id
          in: path
      responses:
        '204':
          description: ''
        '404':
          description: Price override not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````