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.
Delete a person by ID.
DELETE
/v1/people/:id
Authorization: Bearer YOUR_API_KEY
curl -X DELETE https://api.voyantcloud.com/v1/people/p_123 \ -H "Authorization: Bearer YOUR_API_KEY" -i
await fetch("https://api.voyantcloud.com/v1/people/p_123", { method: "DELETE", headers: { Authorization: `Bearer ${process.env.VOYANT_API_KEY}` }, })
import os import requests resp = requests.delete( "https://api.voyantcloud.com/v1/people/p_123", headers={"Authorization": f"Bearer {os.environ['VOYANT_API_KEY']}"}, ) print(resp.status_code) # 204