P
ProveIQ
← Back to Trust CenterConstitution §3.1.4 · Live today

Five rights. Five endpoints. No support ticket required.

Most platforms make you email a privacy team and wait 30 days. We built the rights into the product — call them from the dashboard, from a curl script, or from your lawyer's API.

Right to Access

GET /api/dsr/access

Download a full JSON + PDF export of everything we hold about you. Consent logs, submissions, evaluations, certificates, profile. One click, full bundle.

Right to Correction

PATCH /api/dsr/correction

Fix anything incorrect — name, email, education, skills, a misattributed submission. We log both the old and new value for auditability.

Right to Erasure

DELETE /api/dsr/erasure

Hard cascading delete across submissions, evaluations, certificates, public profile, consent logs. Backups purge within 30 days. Email confirmation on completion.

Right to Grievance

POST /api/dsr/grievance

File a complaint with our Data Protection Officer if you believe we've mishandled your data. Response within 7 working days. Escalation path to the Data Protection Board documented.

Right to Nominate

POST /api/dsr/nomination

Designate a representative who can exercise these rights on your behalf — a parent, guardian, or legal counsel. Revocable any time.

Using them today

From the dashboard: Settings → Privacy. Every right has a one-click action with a plain-English preview of what it does.

From the API: authenticate with your session cookie or a scoped API key. Example:

# Download your full data bundle
curl -H "Cookie: $PROVEIQ_SESSION" \
  https://proveiq.in/api/dsr/access \
  -o my-proveiq-data.zip

# Request cascading deletion
curl -X DELETE \
  -H "Cookie: $PROVEIQ_SESSION" \
  https://proveiq.in/api/dsr/erasure

Responses are standard JSON with an audit ID you can reference in any future correspondence with our DPO.