v31

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

コレクションにアイテムを追加

指定したコレクションに新しいアイテムを追加します。

post/v1/collections/{collection_id}/items

Path parameters

collection_idinteger required

コレクションID

Request body

linkstring required

オカズリンク (http, https)

notestring

ノート

tagsstring[]

タグ

Example request

{
  "link": "http://example.com",
  "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"
  ]
}