The Scrums.com API is planned and not yet publicly available. Endpoints and behaviour are subject to change before release.
Overview
A project (PROJ-*) is a label, not a container. Projects do not sit in the hierarchy between workspaces and Service Lines. There is no “project scope” in access control, no “project-owned” resources, and no billing boundary at the project level.
Projects exist to answer one question: across all the Service Lines and work items on this platform, which ones relate to a given initiative?
A talent engagement LIN-*, an ODS outcome LIN-*, an infrastructure estate LIN-*, and a hundred tasks (TSK-*) can all carry the same PROJ-26-004281 tag. That tag is how you get a cross-platform, cross-product-line view of everything related to a named initiative.
Core Concepts
Projects are applied as labels on:
Projects do not appear on: users, invoices, capacity pools, or integrations. Those resources are scoped to organizations and workspaces.
Scope and visibility
A project is scoped to an organization. Its label can be applied across any workspace within that organization. This is how cross-workspace project visibility is achieved without duplicating structure.
Projects and billing
There is no project-level billing. Costs are always anchored to Service Lines. If you need cost visibility per project, query usage across all LIN-* that carry that project_tag.
Endpoints
GET /v1/projects
List all projects within an organization.
Request
Response
POST /v1/projects
Create a new project label.
Request
Response
Returns the created project with status: "active".
Notes
slug must be unique within the organization.
- Creating a project does not create any Service Lines, workspaces, or tasks. It is purely a label until you tag other resources with it.
GET /v1/projects/
Retrieve a project with its current resource summary.
Response
PATCH /v1/projects/
Update a project label’s metadata.
Request
Notes
- Archiving a project does not affect Service Lines or tasks that carry the label. It only removes the project from active lists.
project_tags on Service Lines are not automatically removed when a project is archived.
GET /v1/projects//service-lines
List all Service Lines tagged with this project.
Response
Returns a list of LIN-* objects with the full Service Line shape. Equivalent to GET /v1/service-lines?project_tag=PROJ-26-004281.
GET /v1/projects//tasks
List all tasks tagged with this project.
Response
Returns a list of TSK-* objects. Equivalent to GET /v1/tasks?project_id=PROJ-26-004281.
Common Workflows
Tagging new work to a project
Objects
Project
Best Practices
- Treat projects as dashboards, not containers. A project label gives you a cross-platform lens. Build views and reports using it, but do not architect systems that depend on project hierarchy — there is none.
- Tag at Service Line creation. The easiest time to tag a
LIN-* is when the product line request is created (talent request, ODS scope, infrastructure estate). Retroactively tagging is possible but creates reporting gaps.
- One project per named initiative. Do not create per-sprint or per-quarter projects. Those are operational details. Projects are strategic groupings that span months and multiple Service Lines.
- Archive, do not delete. Archived projects preserve their label history. Deleted projects would orphan the
project_tag values on Service Lines and tasks, causing broken reporting.