Skip to main content
DELETE
https://api.keywordsai.co
/
api
/
users
/
<customer_identifier>
import requests

url = "https://api.keywordsai.co/api/users/user_123/"
headers = {"Authorization": "Bearer YOUR_API_KEY"}

resp = requests.delete(url, headers=headers)
print(resp.status_code)
204 No Content
Deletes a customer and all associated data.
This operation is irreversible. All usage data and settings for this customer will be permanently deleted.

Authentication

Public API: use an API key.
  • Authorization: Bearer YOUR_API_KEY (public API)

Path params

customer_identifier
string
required
Your unique identifier for this customer.

Request example

import requests

url = "https://api.keywordsai.co/api/users/user_123/"
headers = {"Authorization": "Bearer YOUR_API_KEY"}

resp = requests.delete(url, headers=headers)
print(resp.status_code)

Response

Returns 204 No Content on success.
204 No Content