get_users
Retrieve user lists from Qiita's developer community platform to access member profiles and information for community engagement.
Instructions
ユーザー一覧を取得します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ページ番号(1-100) | |
| perPage | No | 1ページあたりの件数(1-100) |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "ページ番号(1-100)",
"type": "number"
},
"perPage": {
"default": 20,
"description": "1ページあたりの件数(1-100)",
"type": "number"
}
},
"required": [],
"type": "object"
}