update_project
Update an existing billing project in your organization. Only the fields you provide are changed (PATCH semantics). You can rename the project, update its description, change its status, toggle which billing types are allowed (TM/Fix/OVH), and set per-type hour limits. Discover ids with find_billing_work - never ask the user for an id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New project name. | |
| status | No | Project status. One of: Active, OnHold, Completed, Cancelled. | |
| project_id | Yes | Id of the project to update (required). Must be a project in your organization. | |
| description | No | Project description (max 500 characters). | |
| billing_types | No | Comma-separated list of billing types to allow on this project. One or more of: TM, Fix, OVH. Replaces the entire set — include all types you want to keep. | |
| tm_hour_limit | No | T&M (Time & Materials) hour limit for this project (0 = unlimited). | |
| fix_hour_limit | No | Fixed-price hour limit for this project (0 = unlimited). | |
| ovh_hour_limit | No | Overhead hour limit for this project (0 = unlimited). | |
| idempotency_key | No | Optional caller-supplied key; retrying with the same key returns the original result instead of acting twice. |