Conversation

I built a integration for this week. So now whenever you create or complete a todo, you can have it trigger a number of automations. 🪄 E.g. automatically tweet your project updates, add your progress to a blogpost draft to keep a changelog, etc.
4
23
Here's what was needed to build the integration: 🔐 Authentication method. Could be a simple API key you give to users, but I already had an OAuth2 flow setup so you can "Sign in with WIP"
2
1
There's a few more parts to make it a nicer user experience like providing sample data when creating a Zap and a project selector. Both re-use the existing GraphQL API we already have for WIP.
1
BTW, instead of using webhook subscriptions you could also just let Zapier periodically poll your API for new data. This would arguably have been a more pragmatic approach as it would require zero new code.
1