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

# Delete stage

> **Limit: 10 requests per 1 second per user per IP address**

`DELETE /v1/admin/points/stage`

Delete a specific stage.

Only callable by Broker Admin.




## OpenAPI

````yaml orderly.openapi delete /v1/admin/points/stage
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/admin/points/stage:
    delete:
      tags:
        - admin
      summary: Delete stage
      description: |
        **Limit: 10 requests per 1 second per user per IP address**

        `DELETE /v1/admin/points/stage`

        Delete a specific stage.

        Only callable by Broker Admin.
      parameters:
        - name: orderly-timestamp
          in: header
          required: true
          schema:
            type: string
        - name: orderly-account-id
          in: header
          required: true
          schema:
            type: string
        - name: orderly-key
          in: header
          required: true
          schema:
            type: string
        - name: orderly-signature
          in: header
          required: true
          schema:
            type: string
        - name: stage_id
          in: query
          description: Stage ID to delete
          required: true
          schema:
            type: number
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicResponse'
      deprecated: false
components:
  schemas:
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````