Delete Customer
Permanently delete a customer organization.
Endpoint
DELETE /api/v3/reseller/customers/{id}
Response
Status: 204 No Content
Examples
cURL
curl -X DELETE https://api.scriptix.io/api/v3/reseller/customers/123 \
-H "Authorization: Bearer YOUR_API_KEY"
Python
response = requests.delete(
'https://api.scriptix.io/api/v3/reseller/customers/123',
headers={'Authorization': 'Bearer YOUR_API_KEY'}
)
if response.status_code == 204:
print("Customer deleted")
Warning
⚠️ Deletion is permanent. All customer data will be deleted.