Skip to content
Unify help centre Unify Help Centre

GET projects

This endpoint returns the projects that the current team is involved with.

It’s designed to be used in conjunction with the create tasks API and more data will be available soon.

GET thgflow.com/api/rest/v1/teams/projects

Response

{
  "projects": Project[]
}
interface Project {
  project_id: string;
  project_name: string;
  phase_id: string;
}