GET /comp/timelines
NO
NO
{
rows: [
{
id
title
description
data
editor
create_date
update_date
}
...
]
}
GET /comp/timelines/:id
NO
{
id
title
description
authors
tags
events
data
editor
create_date
update_date
}
POST /comp/timelines
NO
Key | Type | Required | Description |
---|---|---|---|
title |
string | 🌕 | 時間軸標題 |
description |
string | 🌕 | 時間軸敘述 |
data |
json | 🌑 | 其它任何需要紀錄在此時間軸的資料(非必要不使用) |
authors |
array of persona ids | 🌕 | 此時間軸的作者們 Persona ID |
tags |
array of tag ids | 🌕 | 此時間軸的 Tag |
{
"title": "沃草大紀事",
"description": "沃草的種種",
"authors": [1, 2, 3],
"tags": [1, 2],
"data": **JSON**
}
Returns the newly created timeline
PATCH /comp/timelines/:id
NO
Key | Type | Required | Description |
---|---|---|---|
id |
integer | 🌕 | 時間軸 ID |
title |
string | 🌕 | 時間軸標題 |
description |
string | 🌕 | 時間軸敘述 |
data |
json | 🌑 | 其它任何需要紀錄在此時間軸的資料(非必要不使用) |
authors |
array of persona ids | 🌕 | 此時間軸的作者們 Persona ID |
tags |
array of tag ids | 🌕 | 此時間軸的 Tag |
{
"id": 1,
"title": "沃草大紀事",
"description": "沃草的種種",
"data": **JSON**,
"authors": [1, 2, 3],
"tags": [1, 2]
}
DELETE /comp/timelines/:id
NO
204 No Content