API Documentation

RESTful API with simple authentication

DELETE/audits/:auditId

Permanently deletes an audit session. This cannot be undone.

Headers

HeaderTypeRequiredDescription
X-API-KeystringRequiredYour 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.

Ready to integrate?