Tags and Organization
Organize documents with color-coded tags.
Overview
Tags help you organize documents by status, department, project, or any category that fits your workflow. Each tag has a name and an optional color.
Adding Tags to Documents
From the Documents List
Tags appear as colored badges next to each document in the list view.
From the Document Detail Page
- Open a document
- Click + Tag below the document title
- Select an existing tag from the dropdown, or create a new one
- To remove a tag, click the x on the tag badge
Creating a New Tag
- Click + Tag on any document
- Type a name in the "New tag name" field
- Select a color from the color picker
- Click Create & add
The tag is created for your organization and applied to the document in one step.
Available Colors
Tags support 8 colors: gray, red, orange, yellow, green, blue, purple, and pink.
Managing Tags via the API
List Tags
curl "https://api.adaline.ink/api/v1/tags?org_id=ORG_ID" \
-H "Authorization: Bearer YOUR_TOKEN"
Create a Tag
curl -X POST https://api.adaline.ink/api/v1/tags \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "reviewed", "color": "green", "org_id": "ORG_ID"}'
Add Tag to Document
curl -X POST https://api.adaline.ink/api/v1/tags/TAG_ID/documents/DOC_ID \
-H "Authorization: Bearer YOUR_TOKEN"
Remove Tag from Document
curl -X DELETE https://api.adaline.ink/api/v1/tags/TAG_ID/documents/DOC_ID \
-H "Authorization: Bearer YOUR_TOKEN"
Delete a Tag
Deleting a tag removes it from all documents. The documents themselves are not affected.
curl -X DELETE https://api.adaline.ink/api/v1/tags/TAG_ID \
-H "Authorization: Bearer YOUR_TOKEN"
Suggested Tag Systems
By Compliance Status
compliant(green) -- passed compliance checkneeds-fixes(yellow) -- issues identifiednon-compliant(red) -- critical issues
By Workflow Stage
uploaded(gray) -- just uploaded, not yet reviewedscanned(blue) -- compliance check completeremediated(green) -- fixes appliedpublished(purple) -- shared or exported
By Department
hr(orange)marketing(pink)academic(blue)legal(purple)
Tags are scoped to your organization -- each org has its own tag set.