Permanently remove a customer record from your integration
Customer deletion is a permanent, irreversible action. Make sure to confirm the deletion intent and understand the implications before proceeding.
Delete a customer and all associated data. This action cannot be undone.
The unique identifier of the customer to delete
When you delete a customer, the following associated data will also be permanently removed:
Transaction records themselves are preserved for compliance and audit purposes, even after customer deletion.
After deletion:
A successful deletion returns an HTTP 204 No Content
response with no response body.
404 - Customer Not Found
403 - Deletion Restricted
409 - Deletion Conflict
Verify Customer Status
Check for any active subscriptions, pending transactions, or other dependencies that might prevent deletion.
Backup Data
Consider exporting customer data before deletion if needed for records.
Request Confirmation
Implement a confirmation step in your interface to prevent accidental deletions.
Execute Deletion
Perform the deletion API call with proper error handling.
Verify Deletion
Confirm the customer record has been removed by attempting to fetch it.
If you need to preserve customer data for compliance or business purposes, consider implementing a soft delete mechanism instead of permanent deletion.
Permanently remove a customer record from your integration
Customer deletion is a permanent, irreversible action. Make sure to confirm the deletion intent and understand the implications before proceeding.
Delete a customer and all associated data. This action cannot be undone.
The unique identifier of the customer to delete
When you delete a customer, the following associated data will also be permanently removed:
Transaction records themselves are preserved for compliance and audit purposes, even after customer deletion.
After deletion:
A successful deletion returns an HTTP 204 No Content
response with no response body.
404 - Customer Not Found
403 - Deletion Restricted
409 - Deletion Conflict
Verify Customer Status
Check for any active subscriptions, pending transactions, or other dependencies that might prevent deletion.
Backup Data
Consider exporting customer data before deletion if needed for records.
Request Confirmation
Implement a confirmation step in your interface to prevent accidental deletions.
Execute Deletion
Perform the deletion API call with proper error handling.
Verify Deletion
Confirm the customer record has been removed by attempting to fetch it.
If you need to preserve customer data for compliance or business purposes, consider implementing a soft delete mechanism instead of permanent deletion.