Projects
Create Project
Create a new project in your workspace.
Requires an API key with
Other validation messages include:
429 Too Many Requests - Project limit reached for your workspace plan.
full_access scope.
Body
Project name. 1 to 100 characters.
Project description.
Project status. One of:
draft, not_started, planned, in_progress, completed, on_hold, weather_delayed, technical_issues, cancelled, aborted, other.Your workspace may show custom display names for these statuses in the dashboard. The API always uses the predefined values listed above. Use
other with other_status_reason for statuses that don’t map to a predefined value.Start date in ISO 8601 format (e.g.
2026-04-15).End date in ISO 8601 format. Must be after
start_date.Your own identifier for this project. Max 255 characters. Useful for mapping
to records in your own system.
Required when
status is other. 1 to 200 characters.Response
The unique identifier of the newly created project.
Errors
400 Bad Request - Validation failed.name must be between 1 and 100 charactersstart_date is requiredstart_date must be a valid ISO date stringend_date must be after start_datedescription is requiredstatus must be one of: draft, not_started, in_progress, ...other_status_reason is required when status is "other"external_id must not exceed 255 characters