Unify your entire tech stack with a single, elegant platform. Connect to any external system, from CRMs to payment gateways, with a few lines of code and deliver powerful Services-as-Software.
import { integrations } from '@do/sdk';
// Execute a pre-configured action on an integration.
// Here, we're fetching a customer record from Salesforce.
const customer = await integrations.salesforce.run('getCustomerByEmail', {
email: 'jane.doe@acme.com'
});
console.log(customer.id, customer.name);
// All the complexity of OAuth, API endpoints, and data
// transformation is handled automatically by the .do platform.