get_user_followees
Retrieve the list of users followed by a specific Qiita user to analyze their interests and connections within the developer community.
Instructions
指定されたユーザーのフォロー一覧を取得します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ページ番号(1-100) | |
| perPage | No | 1ページあたりの件数(1-100) | |
| userId | Yes | ユーザーID |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "ページ番号(1-100)",
"type": "number"
},
"perPage": {
"default": 20,
"description": "1ページあたりの件数(1-100)",
"type": "number"
},
"userId": {
"description": "ユーザーID",
"type": "string"
}
},
"required": [
"userId"
],
"type": "object"
}