Sharing Reports
Share compliance reports with stakeholders via links or direct access.
Sharing Reports
Compliance reports can be shared with stakeholders who don't have an adaline.report account. Shared reports are read-only and show the full score, category breakdown, and issue list.
Creating a Share Link
From the Dashboard
- Open the report you want to share
- Click the Share button
- A unique share URL is generated
- Copy the link and send it to anyone
Via the API
curl -X POST https://api.adaline.report/api/v1/reports/REPORT_ID/share \
-H "X-API-Key: your-api-key"
Returns:
{
"share_id": "abc123",
"share_url": "https://adaline.report/shared/abc123"
}
Viewing a Shared Report
Anyone with the share URL can view the report without signing in. The shared view shows:
- Overall score and grade
- Category breakdown with scores
- Individual check results with severity and details
- Document metadata (filename, type, scan date)
Shared reports do not show:
- The original document content
- Other reports in your account
- Your API keys or account information
Revoking Access
To stop sharing a report, delete it from your account. Shared links will stop working immediately.
Use Cases
Vendor Compliance Proof
Share a compliance report with a client or procurement officer to demonstrate your document meets accessibility standards.
Team Review
Send the share link to colleagues who need to review accessibility issues without creating accounts.
Audit Documentation
Include share links in compliance audit documentation as evidence of accessibility testing.