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

# Unlink External Wallet from User

> Unlink an external wallet address from a user.

**API scope required**: `users.create`



## OpenAPI

````yaml delete /2025-06-09/users/{userLocator}/linked-wallets/{address}
openapi: 3.0.0
info:
  contact:
    email: support@crossmint.com
    name: Crossmint Support
    url: https://www.crossmint.com
  description: Crossmint Users API
  title: Crossmint Users API
  version: 1.0.0
servers:
  - description: Staging environment (testnets)
    url: https://staging.crossmint.com/api
  - description: Production environment (mainnets)
    url: https://www.crossmint.com/api
security: []
tags: []
paths:
  /2025-06-09/users/{userLocator}/linked-wallets/{address}:
    delete:
      tags:
        - Users - Linked Wallets
      summary: Unlink External Wallet from User
      description: |-
        Unlink an external wallet address from a user.

        **API scope required**: `users.create`
      operationId: LinkedWalletsController-unlinkWallet-2
      parameters:
        - description: API key required for authentication
          in: header
          name: X-API-KEY
          required: true
          schema:
            type: string
        - description: |-
            A user locator can be of the format:
            - `email:<email>`
            - `userId:<userId>`
            - `phoneNumber:<phoneNumber>`
            - `twitter:<handle>`
            - `x:<handle>`
          example: email:user@example.com
          in: path
          name: userLocator
          required: true
          schema:
            type: string
        - in: path
          name: address
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Wallet unlinked from user. No content returned.
        '404':
          description: External wallet not found for this user

````