Getting Started

Welcome to PandaTask! This guide will walk you through setting up your workspace, inviting your team, and creating your first project.

1. Create Your Workspace

After signing up, you'll be prompted to create your first workspace. A workspace is the top-level container for all your projects, tasks, and team members. Choose a name that represents your organization.

// Example: Creating a workspace via API
const workspace = await pandatask.workspaces.create({ name: "Acme Corp", plan: "pro", timezone: "America/New_York" });

2. Invite Team Members

Navigate to Settings → Team to invite your colleagues. You can assign roles like Owner, Admin, or Member to control access levels across your workspace.

3. Create Your First Project

Click the "+ New Project" button in the sidebar. Give your project a name and optional description. You can choose between Kanban, List, or Calendar views.

// Example: Creating a project
const project = await pandatask.projects.create({ name: "Q1 Launch", view: "kanban", members: ["user_123", "user_456"] });