Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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)
curl -X DELETE "https://api.keywordsai.co/api/users/user_123/" \ -H "Authorization: Bearer YOUR_API_KEY"
204 No Content
Authorization: Bearer YOUR_API_KEY
Was this page helpful?