Quick Start
Get your first intelligent intake form up and running in minutes.
1. Get Access
Byteonic Intake is currently available for enterprise teams. Contact our sales team to provision your organization environment.
2. Login to Console
Once your organization is provisioned, you will receive an invite link via email. Click the link to set up your admin account and access the dashboard.
3. Create a Form
Navigate to the Forms tab in your dashboard and click "New Form". Give your form a name (e.g., "Contact Us") and a URL slug.
4. Define Fields
Use the drag-and-drop builder to define your expected data schema. This ensures validation for your API endpoint.
- Text Input: Label it "Name" (key:
name). - Email Input: Label it "Email" (key:
email). - Message: Label it "Message" (key:
message).
5. Enable Auto-Replies
Go to the Settings tab of your form. Toggle "Enable Auto-Reply". Select AI Mode and choose a model (e.g., Gemini).
Write a simple prompt: You are a helpful support agent. Thank the user for their message: "{{Message}}" and tell them we will reply within 24 hours.
6. Connect Your Frontend
You can connect via our WordPress Plugin or directly via API.
Option A: REST API
curl -X POST https://intake.byteoniclabs.com/api/external/forms/{YOUR_SLUG}/submit \
-H "Content-Type: application/json" \
-d '{
"name": "Alice",
"email": "alice@example.com",
"message": "Hello!"
}'Option B: WordPress
Download the plugin from the dashboard, enter your API key, and map your existing Contact Form 7 or Gravity Forms fields.