✕ Clear all filters
27 articles
▶ Videos →

📰 Dev.to · FetchSandbox

27 articles · Updated every 3 hours · View all reads

All Articles 141,442Blog Posts 144,076Tech Tutorials 36,758Research Papers 27,203News 19,630 ⚡ AI Lessons
Our CI mocked Stripe. Production still broke on step two.
Dev.to · FetchSandbox ☁️ DevOps & Cloud ⚡ AI Lesson 1mo ago
Our CI mocked Stripe. Production still broke on step two.
Unit tests returned 200. The PR merged. Then webhooks never reconciled because step two used a fake ID. We gate deploys with FetchSandbox MCP workflows in GitHu
Our partners kept breaking on staging. So we gave them production access. (Don't do this.)
Dev.to · FetchSandbox ⚡ AI Lesson 1mo ago
Our partners kept breaking on staging. So we gave them production access. (Don't do this.)
Four ways we tried to let partners test our API — docs, UAT, IP-whitelisted staging, then production. Each one failed worse than the last.
Resend webhook reconciliation: map events to the right email record
Dev.to · FetchSandbox 📣 Digital Marketing & Growth ⚡ AI Lesson 1mo ago
Resend webhook reconciliation: map events to the right email record
POST /emails gives you an ID. The bug shows up later when email.delivered, email.opened, and email.bounced arrive and your app cannot reconcile them to one inte
Test AgentMail multi-tenant webhooks before they leak across tenants
Dev.to · FetchSandbox 🤖 AI Agents & Automation ⚡ AI Lesson 1mo ago
Test AgentMail multi-tenant webhooks before they leak across tenants
AgentMail webhook creation can look done after a 200 OK. The real test is whether the persisted webhook is still scoped to the inboxes you sent.
WorkOS directory sync webhooks need reconciliation after Okta group renames
Dev.to · FetchSandbox 1mo ago
WorkOS directory sync webhooks need reconciliation after Okta group renames
Okta group renames can arrive through WorkOS directory sync as partial webhook events. If feature gates trust the payload, users split by cache state. Re-fetch
Test Resend webhook reconciliation before production
Dev.to · FetchSandbox 📣 Digital Marketing & Growth ⚡ AI Lesson 2mo ago
Test Resend webhook reconciliation before production
Sending an email gives you an ID. The harder part is proving your app can reconcile delivered, bounced, and opened events back to the right record.
Run APIs before setup
Dev.to · FetchSandbox ⚡ AI Lesson 2mo ago
Run APIs before setup
Before wiring local envs, mock servers, and copy-pasted IDs, developers should be able to explore the real API workflow from their IDE.
Testing Resend is not just POST /emails
Dev.to · FetchSandbox 📣 Digital Marketing & Growth ⚡ AI Lesson 2mo ago
Testing Resend is not just POST /emails
Sending an email is easy. The integration pain starts when you need delivery status, webhooks, and app state you can trust.
Runnable API integration workflows from your favorite IDE
Dev.to · FetchSandbox ⚡ AI Lesson 2mo ago
Runnable API integration workflows from your favorite IDE
Configure FetchSandbox MCP in Claude, Cursor, or your IDE so your agent can run guided API workflows while building integrations.
Test Cal.com booking flows without calendar chaos
Dev.to · FetchSandbox 2mo ago
Test Cal.com booking flows without calendar chaos
A narrow Cal.com API testing note: create, fetch, reschedule, cancel, and verify the calendar identity before users see duplicate events.
Test Notion database queries without a workspace
Dev.to · FetchSandbox ⚡ AI Lesson 2mo ago
Test Notion database queries without a workspace
A narrow Notion API testing note: filter database rows, verify response shape, and avoid polluting a real workspace.
When your SaaS API has docs but no real sandbox
Dev.to · FetchSandbox ⚡ AI Lesson 2mo ago
When your SaaS API has docs but no real sandbox
A narrow guide for small SaaS API teams: why docs and examples are not enough, and how to test customer and subscription workflows before production.
Polar external_id reconciliation: the customer field that keeps checkout tied to your user
Dev.to · FetchSandbox 📣 Digital Marketing & Growth ⚡ AI Lesson 2mo ago
Polar external_id reconciliation: the customer field that keeps checkout tied to your user
A narrow Polar billing integration note on why external_id matters before checkout, and how to test the customer mapping without a live API token.
Test Polar's customer and product API flow without an API token
Dev.to · FetchSandbox ⚡ AI Lesson 2mo ago
Test Polar's customer and product API flow without an API token
Polar billing integrations start before checkout. Here's how to test customer and product state before wiring real payments.
Why Paddle's subscription.activated arrives before subscription.created
Dev.to · FetchSandbox ⚡ AI Lesson 3mo ago
Why Paddle's subscription.activated arrives before subscription.created
You'd think webhook events fire in order. Paddle disagrees. Here's what happens and how to handle it.
How to test Stripe Connect transfers without a connected account
Dev.to · FetchSandbox 📣 Digital Marketing & Growth ⚡ AI Lesson 3mo ago
How to test Stripe Connect transfers without a connected account
Stripe Connect's transfer-to-payout flow is four API calls. The testing setup before you can make the first one is the hard part.
Test Paddle webhooks without account verification
Dev.to · FetchSandbox 3mo ago
Test Paddle webhooks without account verification
Paddle requires business verification before you can test subscription webhooks. Here's how to test the full lifecycle without waiting.
Test Datadog API endpoints without an API key
Dev.to · FetchSandbox ⚡ AI Lesson 3mo ago
Test Datadog API endpoints without an API key
Datadog's API requires two keys just to list your monitors. Here's how to test the full flow without creating an account.
Testing Resend's template email flow end to end
Dev.to · FetchSandbox 3mo ago
Testing Resend's template email flow end to end
Three API calls. One template ID that has to carry through all of them. Most developers test the last call and skip the first two.
How to test GitHub merge conflicts locally
Dev.to · FetchSandbox ☁️ DevOps & Cloud ⚡ AI Lesson 3mo ago
How to test GitHub merge conflicts locally
Opening a pull request is easy. The annoying part is the branch that looks mergeable until your integration hits the conflict path.