Skip to main content

Tags and Organization

Organize and filter your compliance reports with tags.

Overview

Tags help you organize and filter compliance reports. Use them to categorize by department, status, priority, or any system that works for your workflow.

Creating Tags

From the Dashboard

  1. Open any report
  2. Click + Tag to open the tag picker
  3. Select an existing tag or create a new one
  4. Choose a name and color

Via the API

curl -X POST https://api.adaline.report/api/v1/tags \
  -H "X-API-Key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{"name": "needs-review", "color": "red"}'

Available colors: red, orange, yellow, green, blue, purple, pink, gray.

Tagging Reports

Add a Tag

curl -X POST https://api.adaline.report/api/v1/tags/TAG_ID/reports/REPORT_ID \
  -H "X-API-Key: your-api-key"

Remove a Tag

curl -X DELETE https://api.adaline.report/api/v1/tags/TAG_ID/reports/REPORT_ID \
  -H "X-API-Key: your-api-key"

Suggested Tag Systems

By Status

  • needs-review (red) -- not yet reviewed
  • in-progress (yellow) -- fixes underway
  • compliant (green) -- passed all checks

By Department

  • marketing (blue)
  • hr (purple)
  • legal (orange)

By Priority

  • urgent (red) -- public-facing documents
  • normal (blue) -- internal documents
  • low (gray) -- archived content

Listing Tags

curl https://api.adaline.report/api/v1/tags \
  -H "X-API-Key: your-api-key"

Deleting Tags

Deleting a tag removes it from all reports. The reports themselves are not affected.

curl -X DELETE https://api.adaline.report/api/v1/tags/TAG_ID \
  -H "X-API-Key: your-api-key"
© 2026 Adaline LLC