v31

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01251650.0 KB
collection

コレクションアイテムの更新

指定したIDのコレクションアイテムの情報を更新します。 リクエスト内の項目は全て省略可能であり、更新したい項目のみを送信することができます。

patch/v1/collections/{collection_id}/items/{collection_item_id}

Path parameters

collection_idinteger required

コレクションID

collection_item_idinteger required

コレクションアイテムID

Request body

notestring

ノート

tagsstring[]

タグ

Example request

{
  "note": "すごく抜ける",
  "tags": [
    "Example",
    "Example_2"
  ]
}

Response

成功

idinteger required

コレクションアイテムID

collection_idinteger required

コレクションID

linkstring required

オカズリンク (http, https)

notestring

ノート

tagsstring[]

タグ

Example response

{
  "link": "http://example.com",
  "note": "すごく抜ける",
  "tags": [
    "Example",
    "Example_2"
  ]
}