get_item_stockers
Retrieve users who have bookmarked a specific Qiita article. Use this tool to identify readers who found an article valuable by checking its stockers list with pagination support.
Instructions
指定された記事をストックしたユーザー一覧を取得します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| itemId | Yes | 記事ID | |
| page | No | ページ番号(1-100) | |
| perPage | No | 1ページあたりの件数(1-100) |
Input Schema (JSON Schema)
{
"properties": {
"itemId": {
"description": "記事ID",
"type": "string"
},
"page": {
"default": 1,
"description": "ページ番号(1-100)",
"type": "number"
},
"perPage": {
"default": 20,
"description": "1ページあたりの件数(1-100)",
"type": "number"
}
},
"required": [
"itemId"
],
"type": "object"
}