Developer Documentation
Fieldny Documentation
Everything you need to integrate Fieldny with your existing systems and build powerful automations for your field service business.
Documentation
Quick Start
Get up and running with Fieldny in minutes
API Reference
Complete API documentation for developers
Webhooks
Real-time event notifications
Integrations
Connect Fieldny with your tools
Simple Integration
Get started with just a few lines of code
example.js
// Initialize the Fieldny client
const fieldny = new Fieldny({
apiKey: process.env.FIELDNY_API_KEY
});
// Create a new customer
const customer = await fieldny.customers.create({
name: 'John Smith',
phone: '+44 7700 900123',
email: 'john@example.com'
});
// Schedule an appointment
const appointment = await fieldny.appointments.create({
customerId: customer.id,
service: 'Boiler Repair',
date: '2024-03-15',
time: '10:00'
});
console.log('Appointment scheduled:', appointment.id);