Transform your business operations into automated, API-driven services. Our agentic platform orchestrates complex workflows, turning everything into scalable, on-demand software.
import { client } from '@do-sdk/client';
// Define a service to onboard a new customer
const onboardingService = client.service('customer-onboarding');
// Execute the service workflow via API
const newCustomer = await onboardingService.run({
name: 'Acme Corporation',
email: 'contact@acme.com',
plan: 'enterprise'
});
console.log('Onboarding complete for:', newCustomer.id);