Python
from metrifox_sdk import MetrifoxClient client = MetrifoxClient(api_key="your_api_key") # Delete a customer customer_key = "your_customer_unique_id" response = client.customers.delete(customer_key)
{ "message": "Customer deleted successfully" }
Deletes a customer with the given customer key. This action is irreversible.
Important Notes:
Unique identifier of the customer in your application to delete
Customer deleted successfully
"Customer deleted successfully"