GET /console/lab/general_topics
NO
Key | Type | Description | Match | Example |
---|---|---|---|---|
title |
string | 用標題過濾大議題清單 | partial | 人 正義 |
{
rows: [
{
id
title
index
image
specific_topics: [
{
id
title
index
image
}
...
]
}
...
]
totalRowCount
}
GET /console/lab/general_topics/:id
NO
{
id
title
index
image
description
specific_topics: [
{
id
title
index
image
}
...
]
}
POST /console/lab/general_topics
NO
Key | Type | Required | Description |
---|---|---|---|
title |
string | 🌕 | 標題 |
index |
integer | 🌕 | 排序 |
image |
string | 🌕 | 圖像 |
description |
string | 🌕 | 敘述 |
specific_topics |
array of integers: specific topic IDs | 🌕 | 關聯小議題 ID 列表 |
{
"title": "人民參政",
"index": 1,
"image": "path/to/image.png",
"description": "Lorem ipsum.",
"specific_topics": [
1, 2, 3
]
}
Returns the newly created general topic
PATCH /console/lab/general_topics/:id
NO
DELETE /console/lab/general_topics/:id
NO
204 No Content