Learn How to Use Apollyx
Everything you need to create professional forms for your business. From getting started to advanced integrations.
⌘K
API Example
Powerful API for Developers
Build custom integrations with our RESTful API. Create waivers, manage signatures, and automate document workflows programmatically.
View API Referenceapi-example.js
// Create a form using the API
const response = await fetch('https://api.apollyx.com/v1/forms', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
name: 'Salon Booking Form',
type: 'booking',
fields: [
{ type: 'text', label: 'Full Name', required: true },
{ type: 'email', label: 'Email', required: true },
{ type: 'select', label: 'Service', options: ['Haircut', 'Color', 'Styling'] },
{ type: 'datetime', label: 'Preferred Date/Time', required: true }
]
})
});
const form = await response.json();
console.log('Form created:', form.id);Browse Documentation
Explore our comprehensive guides organized by topic.
Getting Started
Form Types
Core Concepts
Need More Help?
Can't find what you're looking for? Our support team is here to help.