Delete a customer from a workspace.
Python
from dub import Dub with Dub( token="DUB_API_KEY", ) as d_client: res = d_client.customers.delete(id="<id>") # Handle response print(res)
{ "id": "<string>" }
Was this page helpful?