paperclip_create_company
Create a new company with a required name, optional description and monthly budget. Auto-generates issue prefix and sets status to active.
Instructions
⚠ Board-only: Create a new company. The issuePrefix is auto-generated from the name.
Args:
name: string — Company name (required, non-empty)
description: string | null (optional) — Company description
budgetMonthlyCents: number (optional) — Monthly budget in cents (e.g. 5000 = $50.00)
Returns: The created company object with all fields including assigned UUID, issuePrefix (auto-generated), status 'active', and timestamps.
Examples:
Use when: onboarding a new organization or setting up a tenant on the board
Don't use when: you need to update an existing company — use paperclip_update_company instead
Error Handling:
400: validation failure → ensure name is non-empty
401: authentication failed → check PAPERCLIP_API_KEY
403: board key required → this endpoint requires board-level authentication
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Company name (required, non-empty) | |
| description | No | Company description (optional, nullable) | |
| budgetMonthlyCents | No | Monthly budget in cents (non-negative integer, e.g. 5000 = $50.00) |