const response = await fetch('https://api.karmapay.xyz/v0/external-accounts/ext_123', {
method: 'DELETE',
headers: {
'Authorization': `Bearer ${API_KEY}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
externalUserId: "user_123"
}),
});