Remove a sender email account from your workspace
Disconnect and delete a sender account. This removes the account from ColdSend but does not affect your actual email account.
import requests
inbox_id = "650e8400-e29b-41d4-a716-446655440000"
response = requests.delete(
f"https://api.coldsend.io/api/public/v1/sender-accounts/{inbox_id}",
headers={"X-API-Key": "your-api-key"}
)