Move the tags section close to the cards

This commit is contained in:
Stanko K.R.
2025-12-09 17:06:52 +01:00
parent 7b30ca203e
commit a7ca41e548
+30 -30
View File
@@ -135,7 +135,7 @@ First, request a direct upload URL by sending file metadata:
```bash
curl -X POST \
-H "Authorization: Bearer your-token" \
-H "Authorization: Bearer put-your-access-token-here" \
-H "Content-Type: application/json" \
-d '{
"blob": {
@@ -741,14 +741,14 @@ Adds a reaction to a comment.
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `content` | string | Yes | The reaction emoji (e.g., "👍", "❤️", "🎉") |
| `content` | string | Yes | The reaction text") |
__Request:__
```json
{
"reaction": {
"content": "👍"
"content": "Great 👍"
}
}
```
@@ -837,6 +837,33 @@ __Response:__
Returns `204 No Content` on success.
### Tags
Tags are labels that can be applied to cards for organization and filtering.
#### `GET /:account_slug/tags`
Returns a list of all tags in the account, sorted alphabetically.
__Response:__
```json
[
{
"id": "03f5v9zo9qlcwwpyc0ascnikz",
"title": "bug",
"created_at": "2025-12-05T19:36:35.534Z",
"url": "http://fizzy.localhost:3006/897362094/cards?tag_ids[]=03f5v9zo9qlcwwpyc0ascnikz"
},
{
"id": "03f5v9zo9qlcwwpyc0ascnilz",
"title": "feature",
"created_at": "2025-12-05T19:36:35.534Z",
"url": "http://fizzy.localhost:3006/897362094/cards?tag_ids[]=03f5v9zo9qlcwwpyc0ascnilz"
}
]
```
### Columns
Columns represent stages in a workflow on a board. Cards move through columns as they progress.
@@ -1096,30 +1123,3 @@ Marks all unread notifications as read.
__Response:__
Returns `204 No Content` on success.
### Tags
Tags are labels that can be applied to cards for organization and filtering.
#### `GET /:account_slug/tags`
Returns a list of all tags in the account, sorted alphabetically.
__Response:__
```json
[
{
"id": "03f5v9zo9qlcwwpyc0ascnikz",
"title": "bug",
"created_at": "2025-12-05T19:36:35.534Z",
"url": "http://fizzy.localhost:3006/897362094/cards?tag_ids[]=03f5v9zo9qlcwwpyc0ascnikz"
},
{
"id": "03f5v9zo9qlcwwpyc0ascnilz",
"title": "feature",
"created_at": "2025-12-05T19:36:35.534Z",
"url": "http://fizzy.localhost:3006/897362094/cards?tag_ids[]=03f5v9zo9qlcwwpyc0ascnilz"
}
]
```