Loading...
Loading...
Everything you need to create professional forms for your business. From getting started to advanced integrations.
Build custom integrations with our RESTful API. Create waivers, manage signatures, and automate document workflows programmatically.
View API Reference// 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);Explore our comprehensive guides organized by topic.
Can't find what you're looking for? Our support team is here to help.