cURL
curl --request DELETE \ --url https://app.d-sports.org/api/wallets \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "address": "<string>" } '
Deletes a wallet by address. The address is normalized to lowercase before lookup.
Clerk session token. Use Authorization: Bearer .
Ethereum address to remove. Normalized to lowercase.
^0x[a-fA-F0-9]{40}$
{ success, data: { message } }
Was this page helpful?