paperclip_get_current_user
Retrieve the authenticated board user and session identity to verify which human operator is active before performing board actions.
Instructions
⚠ Board-only: Return the authenticated board user and their session identity.
Args:
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: { userId: string|null, user: { id, email, ... }|null }. userId is null when no board session is active.
Examples:
Use when: verifying which human operator is authenticated before performing board actions
Don't use when: you need the current agent's identity — use paperclip_get_me instead
Error Handling:
401: authentication failed → check that a board (human) API key is being used
404: no active session → the board token may have expired
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |