Quick Start
How It Works
| Component | Purpose | Scope |
|---|---|---|
| Labels | Color-coded categorization tags | Workspace-scoped, reusable |
| Issue Links | Many-to-many relationships | One issue can have multiple labels |
| Color Coding | Visual organization | Hex color codes (default #6B7280) |
API Endpoints
| Method | Endpoint | Description |
|---|---|---|
POST | /workspaces/{ws_id}/labels | Create workspace label |
GET | /workspaces/{ws_id}/labels | List workspace labels |
PATCH | /workspaces/{ws_id}/labels/{label_id} | Update label |
DELETE | /workspaces/{ws_id}/labels/{label_id} | Delete label |
POST | /workspaces/{ws_id}/issues/{issue_id}/labels/{label_id} | Add label to issue |
DELETE | /workspaces/{ws_id}/issues/{issue_id}/labels/{label_id} | Remove label from issue |
GET | /workspaces/{ws_id}/issues/{issue_id}/labels | List labels on issue |
Request/Response Schemas
Create Label
Update Label
Label Response
Code Examples
curl Examples
- Create Label
- List Labels
- Attach to Issue
- Update Label
Python SDK Examples
- Label Management
- Issue Labeling
Agent Integration
Agent-Powered Label Management
Best Practices
Color Conventions
Color Conventions
Establish consistent color schemes across your workspace for better visual organization. Use semantic colors that teams can easily recognize.
Label Naming
Label Naming
Use clear, consistent naming conventions. Keep label names short but descriptive. Consider using prefixes for categories like “priority:”, “type:”, “status:”.
Workspace Organization
Workspace Organization
Limit the number of labels per workspace to avoid clutter. Group related labels and consider using a hierarchical naming system for complex projects.
Many-to-Many Relationships
Many-to-Many Relationships
Remember that issues can have multiple labels and labels can be attached to multiple issues. Design your labeling strategy with this flexibility in mind.
Testing
Run these tests to verify label functionality:Related
Platform Issues
Manage issues that labels can be attached to
Platform Workspaces
Workspace-scoped label management

