get-user
Retrieve user profile information from note.com by providing a username to access account details and member data.
Instructions
ユーザーの詳細情報を取得する
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | ユーザー名(例: princess_11) |
Input Schema (JSON Schema)
{
"properties": {
"username": {
"description": "ユーザー名(例: princess_11)",
"type": "string"
}
},
"required": [
"username"
],
"type": "object"
}