create_project
Create a Kanboard project with a required name. Optionally add description, identifier, owner, dates, and email. Returns the project ID.
Instructions
Create a new Kanboard project. Requires a name (1–255 chars). Optionally provide a description, short identifier, owner user id, start_date / end_date (ISO 8601 string or epoch seconds), and email. Returns { project_id } on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Project name (1–255 characters, required). | |
| description | No | Optional project description. | |
| identifier | No | Optional short identifier (e.g. 'PRJ'). Must be unique across projects. | |
| owner_id | No | Optional numeric user id of the project owner. | |
| start_date | No | Optional start date as ISO 8601 string or Unix epoch seconds (integer). | |
| end_date | No | Optional end date as ISO 8601 string or Unix epoch seconds (integer). | |
| No | Optional project notification email address. |