> ## 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 strategy vault deposit/withdrawal request with account

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

`POST /v1/sv_operation_request`

Deposit into a strategy vault with account balance / withdraw from a strategy vault into your account balance




## OpenAPI

````yaml orderly.openapi post /v1/sv_operation_request
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/sv_operation_request:
    post:
      tags:
        - public
      summary: Create strategy vault deposit/withdrawal request with account
      description: >

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


        `POST /v1/sv_operation_request`


        Deposit into a strategy vault with account balance / withdraw from a
        strategy vault into your account balance
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                message:
                  type: object
                  properties:
                    payloadType:
                      type: number
                      description: LP_DEPOSIT=0/LP_WITHDRAW=1/SP_DEPOSIT=2/SP_WITHDRAW=3
                    nonce:
                      type: string
                      description: ''
                    receiver:
                      type: string
                      description: ''
                    amount:
                      type: string
                      description: ''
                    vaultId:
                      type: string
                      description: ''
                    token:
                      type: string
                      description: ''
                    dexBrokerId:
                      type: string
                      description: ''
                    chainId:
                      type: number
                      description: ''
                    chainType:
                      type: string
                      description: ''
                signature:
                  type: string
                userAddress:
                  type: string
                verifyingContract:
                  type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BasicResponse'
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

````