Delete User Wallet
Delete a read only imported wallet attached to a user.
HTTP Request
DELETE /v1/auth/users/wallets/{wallet_id}/delete
Returns
A successful response returns an object with user_id
property.
Path parameters
-
wallet_id
string Required Unique ID of the wallet to be deleted. Only read only imported wallet attached to a user can be deleted.
DELETE
/v1/auth/users/wallets/{wallet_id}/delete
curl \
--request DELETE 'https://api.streambird.io/v1/auth/users/wallets/{wallet_id}/delete' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"message": "Successfully deleted user wallet",
"user_id": "user_24wFP9pDa9YiMJLun94iKykoZs2"
}