What a project is
A project lives in exactly one environment. The same name can exist as two
separate projects — one in
test, one in production — and they never share
data or grants. See Environments.
Every workflow belongs to a project
Workflows carry aproject_id, and the public workflow API uses it directly:
project_id on a workflow is how access is resolved: grant a person a
role on proj_… and they get that access on every workflow whose
project_id is proj_….
The shared Default Project
Every environment is created with one Default Project (slugdefault-project). It is the home for workflows that are not deliberately
filed under a project of their own — this is the “shared” project.
- Workflows created without an explicit project land in the Default Project for that environment.
- To list the organization’s shared workflows, filter
GET /v1/workflows?project_id=…with the Default Project’s id. - The person who first sets up the environment is granted Project Owner on the Default Project.
Workflows that predate projects may have a
null project_id. These are
legacy rows from before every workflow was filed under a project; new
workflows always belong to one.Managing projects
Projects are created, renamed, and archived from the dashboard. The
project management endpoints are dashboard-session only and are not part of
the public API. The public API references projects (via
project_id on
workflows) but does not create them.- Create — from the dashboard. The creator is granted Project Owner.
- Rename / recolor — edit name, description, icon, or color.
- Archive — a soft delete; the project is marked archived rather than hard-deleted, so history is preserved.
Authorization provisioning
When a project is created, its authorization resource is provisioned in the background. Project and workflow responses expose this asauthz_status:
Under normal operation a project is
ready within moments of creation. While
provisioning, the creator still sees their own grants optimistically, so
there is no lockout window.
Where to go next
Roles and permissions
The roles you can grant on a project, and what each one allows.
Access control
How projects fit under organizations and environments.