Skip to main content
DELETE
/
api
/
v1
/
customers
/
{customer_key}
Python SDK
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"
}

Authorizations

x-api-key
string
header
required

Path Parameters

customer_key
string
required

Unique identifier of the customer in your application to delete

Response

Customer deleted successfully

message
string
Example:

"Customer deleted successfully"