Delete a linked wallet for a managed user

import { NorthstakeApi } from '@northstake/northstakeapi';
const api = new NorthstakeApi('apiKey', 'privateKey')

const walletAddress = '0x1234'
const asset = 'ETH'

const { body: result } = await api.managedUsersLinkedWallets.deleteLinkedWalletForUser(
  'user_id',
  walletAddress,
  asset
)

Language
Click Try It! to start a request and see the response here!