チャネル
プロジェクトのチャネルエントリのCRUDを行います。
一覧取得
curl "https://api.supdesk.app/v1/changelog?locale=en&limit=20" \
-H "Authorization: Bearer sd_live_..."{
"data": [
{
"id": "ch_abc123",
"title": "バージョン1.4.0",
"body": "### 新機能\n\n- ダークモードサポートの追加\n- エクスポートオプションの新設\n\n### 修正\n\n- Safariエクスポートボタンの問題修正",
"labels": ["new", "fixed"],
"published_at": "2026-07-01T12:00:00Z",
"locale": "en",
"version": "1.4.0"
}
],
"pagination": { "limit": 20, "offset": 0, "has_more": false }
}個別取得
curl "https://api.supdesk.app/v1/changelog/ch_abc123?locale=en" \
-H "Authorization: Bearer sd_live_..."チャネル作成
curl -X POST https://api.supdesk.app/v1/changelog \
-H "Authorization: Bearer sd_live_..." \
-H "Content-Type: application/json" \
-d '{
"title": "バージョン1.4.0",
"body": "### 新機能\n\n- ダークモードサポートの追加\n- エクスポートオプションの新設\n\n### 修正\n\n- Safariエクスポートボタンの問題修正",
"labels": ["new", "fixed"],
"version": "1.4.0",
"status": "published",
"locale": "en"
}'チャネル更新
curl -X PATCH https://api.supdesk.app/v1/changelog/ch_abc123 \
-H "Authorization: Bearer sd_live_..." \
-H "Content-Type: application/json" \
-d '{
"title": "バージョン1.4.0 - 改良版",
"status": "draft"
}'チャネル削除
curl -X DELETE https://api.supdesk.app/v1/changelog/ch_abc123 \
-H "Authorization: Bearer sd_live_..."Last updated on