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

# Delete an agent rate card

> Removes a card nothing depends on. Refuses with a 409 (`rate_card_in_use`) while a plan, a credit product or a billing policy still points at it.



## OpenAPI

````yaml delete /v1/agents/rate-cards/{rate_card_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/rate-cards/{rate_card_id}:
    delete:
      tags:
        - Agents
      summary: Delete an agent rate card
      description: >-
        Removes a card nothing depends on. Refuses with a 409
        (`rate_card_in_use`) while a plan, a credit product or a billing policy
        still points at it.
      operationId: deleteAgentRateCard
      parameters:
        - schema:
            type: string
          required: true
          name: rate_card_id
          in: path
      responses:
        '204':
          description: ''
        '404':
          description: Rate card 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

````