paperclip_get_company
Retrieve a single company's configuration by UUID. Get details on budget, status, branding, and settings.
Instructions
⚠ Board-only: Get a single company by UUID.
Args:
companyId: string — Company UUID (example: "00000000-0000-0000-0000-000000000000")
response_format: 'markdown' | 'json' (optional) — Output format (default: markdown)
Returns: Company object: id, name, description, status, issuePrefix, issueCounter, budgetMonthlyCents, spentMonthlyCents, requireBoardApprovalForNewAgents, feedbackDataSharingEnabled, brandColor, logoAssetId, pauseReason, pausedAt, createdAt, updatedAt.
Examples:
Use when: reading a company's budget, status, or branding configuration
Don't use when: you need to list all companies — use paperclip_list_companies to discover IDs first
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
403: board key required → this endpoint requires board-level authentication
404: company not found → verify ID with paperclip_list_companies
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| companyId | Yes | Company UUID | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |