Connect WorkForge to the tools your team already uses
WorkForge plays well with others. Integrate with your favorite tools and keep everything in sync.
Slack
Get notifications, create tasks, and update statuses right from Slack.
Google Drive
Attach files from Drive and keep documents linked to tasks.
Notion
Sync pages and databases. Keep documentation connected to projects.
GitHub
Link PRs and issues. Auto-update tasks when code ships.
GitLab
Connect merge requests and pipelines to your project tasks.
Zapier
Connect to 5,000+ apps. Automate anything with zero code.
Figma
Embed designs directly in tasks. Keep creative work connected.
Google Calendar
Sync deadlines and meetings. See your schedule alongside tasks.
Microsoft Teams
Get updates and manage tasks without leaving Teams.
Dropbox
Attach and preview Dropbox files directly in your tasks.
Jira
Import projects from Jira or keep both systems in sync.
Zoom
Schedule and join meetings directly from your tasks.
Build your own integrations
Our REST API and webhooks let you connect WorkForge to any system. Build custom workflows that match exactly how your team operates.
- Full REST API with comprehensive documentation
- Webhooks for real-time event notifications
- OAuth 2.0 for secure authentication
- SDKs for Python, JavaScript, and Ruby
// Create a new task via API
const response = await fetch(
'https://api.workforge.io/v1/tasks',
{
method: 'POST',
headers: {
'Authorization': `Bearer ${API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
title: 'Review design mockups',
project_id: 'proj_123',
assignee_id: 'user_456',
due_date: '2024-03-15'
})
}
);
const task = await response.json();
console.log(task.id); // task_789
Ready to connect your tools?
Start your free 14-day trial. No credit card required.