Connect Your Form
Connect your existing form without rebuilding it.
⏱ 2 minPrerequisites: Project created, Project key copied
Problem: You have a project and project key, but do not know how to connect your form so successful submissions appear in Inbox.
Solution: The connection method depends on your platform — AI builder tools use a paste-prompt approach, custom React uses the SDK directly.
Choose Your Path
| Platform | How to Connect | Time |
|---|---|---|
| Lovable | Use platform guide — paste prompt | 2 min |
| Bolt | Use platform guide — paste prompt | 2 min |
| Cursor | Use platform guide — paste prompt | 2 min |
| Claude Code | Use platform guide — paste prompt | 2 min |
| v0 | Use platform guide — paste prompt | 2 min |
| Replit | Use platform guide — paste prompt | 2 min |
| Custom React / Next.js | Install SDK and call trackResponse() | 10 min |
Path 1: AI Builder Tools (Lovable, Bolt, Cursor, etc.)
- —Open your EnterestOS project
- —Click Generate Prompt
- —Select your platform
- —Copy the generated prompt
- —Paste it into your AI tool's chat
- —The tool updates your form automatically
- —Submit a test form to verify
Path 2: Custom React / Next.js
typescript
import { createEnterestOS } from '@enterestos/sdk';
const enterestos = createEnterestOS({
projectKey: 'pk_live_xxx'
});
// In your submit handler, after successful submit:
await enterestos.trackResponse({
type: 'demo_request',
payload: formData
});Result: Your form is now connected. Every submission will appear in Inbox as Reply.
Common Questions
How do I connect my form to EnterestOS?
If you built with Lovable, Bolt, or Cursor: use the platform guide and paste a generated prompt. If you have custom React: install @enterestos/sdk and call trackResponse() after form submit. Either way, it takes 5-10 minutes.