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

# Clear the workspace's default agent billing plan

> Unmarks the default plan. The plan and every customer on it are untouched — only the marker goes. 404 when none was marked.



## OpenAPI

````yaml delete /v1/agents/default-plan
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/default-plan:
    delete:
      tags:
        - Agents
      summary: Clear the workspace's default agent billing plan
      description: >-
        Unmarks the default plan. The plan and every customer on it are
        untouched — only the marker goes. 404 when none was marked.
      operationId: clearAgentDefaultPlan
      responses:
        '204':
          description: ''
        '404':
          description: No default plan is set
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                required:
                  - message
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````