NOUKAI

Organizations & Projects

Multi-tenancy model — accounts, organizations, projects, and role-based access.

Noukai uses a three-level hierarchy for organizing your work.

Hierarchy

Account (you)
  └── Organization (team/company)
        └── Project (workspace)
              └── Flow (pipeline)

Organizations

An organization represents a team or company. It:

  • Has a unique slug (used in API URLs)
  • Contains one or more projects
  • Manages members with role-based access

Roles

RolePermissions
OwnerFull control — delete org, manage all members, billing
AdminManage members, create/revoke API keys, manage projects
MemberRead-only access to projects and flows

Projects

A project is a workspace within an organization for a set of related flows. It:

  • Has a unique slug within its org (used in API URLs)
  • Contains flows (your AI pipelines)
  • Scopes API keys (each key belongs to one project)

URL Structure

The organization and project slugs form part of your API URL:

POST /api/v1/seq/{org_slug}/{project_slug}/{flow_slug}/execute

Example: An org acme-corp with a project support-bot and flow classify-intent:

POST /api/v1/seq/acme-corp/support-bot/classify-intent/execute

On this page