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

# Create/update stage parameters

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

`POST /v1/admin/points/stage`

Create a new stage (series of epochs). Only callable by Broker Admin.

Make sure there's only 1 active stage at any time.




## OpenAPI

````yaml orderly.openapi post /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:
    post:
      tags:
        - private
      summary: Create/update stage parameters
      description: |
        **Limit: 10 requests per 1 second per user per IP address**

        `POST /v1/admin/points/stage`

        Create a new stage (series of epochs). Only callable by Broker Admin.

        Make sure there's only 1 active stage at any time.
      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
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateUpdateStageRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicResponse'
      deprecated: false
components:
  schemas:
    CreateUpdateStageRequest:
      type: object
      properties:
        stage_id:
          type: number
          description: If provided, update this stage; if empty, create a new stage
        stage_name:
          type: string
          description: Name of the stage
        start_date:
          type: string
          description: Start date (YYYY-MM-DD)
        end_date:
          type: string
          description: End date (YYYY-MM-DD), optional for indefinite
        volume_boost:
          type: number
          description: Volume boost factor
        pnl_boost:
          type: number
          description: PnL boost factor
        l1_referral_boost:
          type: number
          description: Level 1 Referral boost factor
        l2_referral_boost:
          type: number
          description: Level 2 Referral boost factor
        is_continous:
          type: boolean
      required:
        - stage_name
        - start_date
        - volume_boost
        - pnl_boost
        - l1_referral_boost
        - l2_referral_boost
        - is_continous
    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

````