Skip to content
Unify help centre Unify Help Centre

GET workflows

Endpoint to return workflows and statuses that belong to a team

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

Response

{
  "workflows": Workflow[]
}
interface WorkflowStatus {
  id: string;
  name: string;
  metadata: Metadata;
}

interface Workflow {
  id: string;
  name: string;
  statuses: WorkflowStatus[];
}