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

# Delegate signer withdraw request

> **Limit: 1 requests per second**

`POST /v1/delegate_withdraw_request`

Creates a withdrawal request on behalf of an account using an authorized delegate signer.




## OpenAPI

````yaml orderly.openapi post /v1/delegate_withdraw_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/delegate_withdraw_request:
    post:
      tags:
        - private
      summary: Delegate signer withdraw request
      description: >
        **Limit: 1 requests per second**


        `POST /v1/delegate_withdraw_request`


        Creates a withdrawal request on behalf of an account using an authorized
        delegate signer.
      parameters:
        - $ref: '#/components/parameters/orderly_timestamp'
        - $ref: '#/components/parameters/orderly_account_id'
        - $ref: '#/components/parameters/orderly_key'
        - $ref: '#/components/parameters/orderly_signature'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DelegateWithdrawRequestBody'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WithdrawResponse'
      deprecated: false
components:
  parameters:
    orderly_timestamp:
      name: orderly-timestamp
      in: header
      description: Timestamp of the signed request in milliseconds.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: '1649920583000'
    orderly_account_id:
      name: orderly-account-id
      in: header
      description: Account ID of the authenticated account.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: 6.858456565150415e+75
    orderly_key:
      name: orderly-key
      in: header
      description: Public orderly key used to sign the request.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
    orderly_signature:
      name: orderly-signature
      in: header
      description: Signature of the request payload generated with the orderly key.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: >-
        dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
  schemas:
    DelegateWithdrawRequestBody:
      required:
        - signature
        - userAddress
        - verifyingContract
        - message
      type: object
      properties:
        signature:
          type: string
          description: The signature generated by signing the message object via EIP-712
        userAddress:
          type: string
          description: The address of the wallet signing the message object via EIP-712
        verifyingContract:
          type: string
          description: Contract address used to verify the wallet signature.
        message:
          type: object
          description: Message object signed by the wallet owner.
          required:
            - delegateContract
            - brokerId
            - chainId
            - receiver
            - token
            - amount
            - withdrawNonce
            - timestamp
          properties:
            delegateContract:
              type: string
            brokerId:
              type: string
              description: Builder ID
            chainId:
              type: integer
              description: Chain ID associated with the settlement request.
            receiver:
              type: string
              description: The address of the receiver
            token:
              type: string
              description: >-
                The string representation of the token that is being withdrawn
                (eg "USDC")
            amount:
              type: string
              description: Amount of tokens to be withdrawn
            withdrawNonce:
              type: string
              description: Valid withdrawal nonce from Get withdrawal nonce
            timestamp:
              type: string
              description: current timestamp in UNIX milliseconds
    WithdrawResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - withdraw_id
              properties:
                withdraw_id:
                  type: integer
                  example: 123
    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

````