Submit Your First Submission
Test your integration with a real form submission.
Problem: You connected your form but have no confirmation it is actually sending data to EnterestOS — until a real user submits and nothing appears.
Solution: Submit a test form right now. It takes 60 seconds to confirm the full path works before any real submissions arrive.
Steps
- 01.Open your form in the browser
- 02.Fill in all fields with test data (e.g., name: Test User, email: [email protected])
- 03.Click Submit
- 04.Open browser DevTools console (F12) — confirm no errors
- 05.Go to /app/inbox
- 06.Open your project
- 07.Look for a submission with status Reply
- 08.Confirm the payload contains your test data
What You Should See
Status: Reply
Type: demo_request (or whatever you set)
Payload: { name: 'Test User', email: '[email protected]', ... }
Created: Just nowIf It Does Not Appear
- —Open browser console (F12) — look for errors from @enterestos/sdk
- —Verify your project key is correct in the SDK config
- —Confirm trackResponse() is called after — not before — form submit
- —Wait 5 seconds and refresh Inbox
- —Run testConnection() to verify your key is valid
Result: You now have end-to-end confirmation that your integration works. Every future submission will appear in Inbox reliably.
Common Questions
How do I test my EnterestOS integration?
Fill out your form with test data and submit it. Go to /app/inbox, open your project, and confirm the submission appears with status Reply and the correct payload.
My test submission did not appear in Inbox — what do I do?
Check browser console (F12) for SDK errors. Verify your project key is correct. Confirm trackResponse() is being called after a successful submit. Run testConnection() to verify the key is valid. Wait 5 seconds and refresh.