Core Features
Integrations
Connect Parley with your existing tools and workflows
CRM Integration
Connect Parley with your CRM system to automatically create contracts from deals and sync contract status back to your sales pipeline.
Connect CRM
Use OAuth or API keys to establish secure connection.
Map Fields
Configure how deal data maps to contract templates.
Automate Workflows
Set up triggers for contract creation and status updates.
const sf = await parley.integrateCRM({
provider: 'salesforce',
apiKey: 'YOUR_SF_API_KEY',
instanceUrl: 'https://your-org.salesforce.com'
});
const hs = await parley.integrateCRM({
provider: 'hubspot',
apiKey: 'YOUR_HS_API_KEY',
portalId: 'YOUR_PORTAL_ID'
});
CRM integrations reduce manual data entry and ensure contract data stays synchronized.
Email Integration
Parley integrates with email providers to send contract notifications and track email-based negotiations.
Connect Gmail to automatically send contract updates and track email threads.
curl -X POST "https://api.parley.ai/integrations/email" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"provider":"gmail","auth_code":"AUTH_CODE"}'
parley.on('contract.sent', (event) => {
// Handle contract sent event
console.log('Contract sent:', event.contractId);
});
API Integration
Use Parley's REST API and webhooks to build custom integrations with your existing systems.
| Endpoint | Method | Purpose |
|---|---|---|
/contracts | GET | List contracts |
/contracts | POST | Create contract |
/webhooks | POST | Register webhook |
Parley's webhook system provides real-time updates for contract status changes and negotiation events.
Was this page helpful?