Register Notification

Register a notification email for an in-progress or failed audit.

POST https://audit-engine.oathe.ai/api/audit/{auditId}/notify

Register a notification email for an in-progress or failed audit. Use this if you forgot to include notification_email in the original submission.

Request Body

email string required
Email address to notify when the audit completes.

Example

curl -X POST https://audit-engine.oathe.ai/api/audit/a1b2c3d4-.../notify \
  -H "Content-Type: application/json" \
  -d '{"email": "[email protected]"}'

Response 200

{ "ok": true }

Errors

404
Audit ID not found.
409
Audit already complete — results are available via the status endpoint.
400
Invalid email address format.