Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 2 KB

File metadata and controls

47 lines (31 loc) · 2 KB

UserWeb3Wallets

(UserWeb3Wallets)

Overview

Available Operations

  • Delete - Delete a user web3 wallet

Delete

Delete the web3 wallet identification for a given user.

Example Usage

using Clerk.BackendAPI;
using Clerk.BackendAPI.Models.Operations;
using Clerk.BackendAPI.Models.Components;

var sdk = new ClerkBackendApi(bearerAuth: "<YOUR_BEARER_TOKEN_HERE>");

var res = await sdk.UserWeb3Wallets.DeleteAsync(
    userId: "<id>",
    web3WalletIdentificationId: "<id>"
);

// handle response

Parameters

Parameter Type Required Description
UserId string ✔️ The ID of the user that owns the web3 wallet
Web3WalletIdentificationId string ✔️ The ID of the web3 wallet identity to be deleted

Response

UserWeb3WalletDeleteResponse

Errors

Error Type Status Code Content Type
Clerk.BackendAPI.Models.Errors.ClerkErrors 400, 403, 404, 500 application/json
Clerk.BackendAPI.Models.Errors.SDKError 4XX, 5XX */*