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

# Resend Withdrawal Code

> Request a withdrawal to a saved address book entry and review past withdrawals.

The destination must be provided as the ID of a confirmed address book
entry rather than a raw address. Two-factor authentication is required,
and first-time addresses require email confirmation before the
withdrawal is released.



## OpenAPI

````yaml /openapi.json post /api/private/v2/wallet/{asset}/withdrawals/resend-code/
openapi: 3.0.3
info:
  title: Digital Surge API
  version: '2.0'
  description: >-
    Digital Surge is an Australian cryptocurrency exchange. This API provides
    programmatic access to your account: live AUD pricing for hundreds of
    assets, instant swaps, recurring buys, price triggers, portfolio balances,
    transaction history, and crypto withdrawals.


    **Authentication** — create an API key in the Digital Surge app under
    *Account Settings → API Keys* and send it with every request:
    `Authorization: Bearer <your-api-key>`. Read-only and read & write keys are
    available.


    **Guides and interactive documentation** — https://digitalsurge.com.au/docs


    **AI agents** — connect via the Digital Surge MCP server:
    https://mcp.digitalsurge.com.au/mcp
servers:
  - url: https://app.digitalsurge.com.au
    description: Production
security: []
tags:
  - name: Public
    description: Unauthenticated endpoints — market data, asset info, pricing
  - name: Private
    description: Authenticated endpoints — trading, portfolio, account management
paths:
  /api/private/v2/wallet/{asset}/withdrawals/resend-code/:
    post:
      tags:
        - Private
      summary: Resend Withdrawal Code
      description: >-
        Request a withdrawal to a saved address book entry and review past
        withdrawals.


        The destination must be provided as the ID of a confirmed address book

        entry rather than a raw address. Two-factor authentication is required,

        and first-time addresses require email confirmation before the

        withdrawal is released.
      operationId: private_v2_wallet_withdrawals_resend_code_create
      parameters:
        - in: path
          name: asset
          schema:
            type: string
            pattern: ^\w{1,10}$
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DualFactorResendResponse'
          description: ''
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DualFactorResendNoPending'
          description: ''
      security:
        - bearerAuth: []
components:
  schemas:
    DualFactorResendResponse:
      type: object
      properties:
        sms_sent:
          type: boolean
      required:
        - sms_sent
    DualFactorResendNoPending:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Personal API key, created in the Digital Surge app under Account
        Settings → API Keys. Send it with every request as `Authorization:
        Bearer <your-api-key>`.

````