API Documentation
RESTful API with simple authentication
DELETE
/audits/:auditIdPermanently deletes an audit session. This cannot be undone.
Headers
| Header | Type | Required | Description |
|---|---|---|---|
| X-API-Key | string | Required | Your API key (or use Authorization: Bearer) |
Example
curl -X DELETE https://api.ttsaudit.com/v1/audits/abc123def456 -H "X-API-Key: YOUR_API_KEY"
Response
{
"ok": true
}Returns 404 if the audit does not exist or belongs to another user.