rename_project
Modify a project's display name or URL-safe slug. Supply new name, slug, or both.
Instructions
Update an existing project's name / slug (PATCH /v1/projects/:id). Specify either or both. slug keeps the URL-safe constraint (/^[a-z][a-z0-9-]{0,31}$/). Renaming the default project is allowed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New display name (unchanged when omitted) | |
| slug | No | New slug (unchanged when omitted, /^[a-z][a-z0-9-]{0,31}$/) | |
| projectId | Yes | Target project id (the UUID obtained from list_projects) |