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
- Open any report
- Click + Tag to open the tag picker
- Select an existing tag or create a new one
- 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 reviewedin-progress(yellow) -- fixes underwaycompliant(green) -- passed all checks
By Department
marketing(blue)hr(purple)legal(orange)
By Priority
urgent(red) -- public-facing documentsnormal(blue) -- internal documentslow(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"