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