Core FeaturesIntegrations
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'
});
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"}'

API Integration

Use Parley's REST API and webhooks to build custom integrations with your existing systems.

EndpointMethodPurpose
/contractsGETList contracts
/contractsPOSTCreate contract
/webhooksPOSTRegister webhook
Parley's webhook system provides real-time updates for contract status changes and negotiation events.
Was this page helpful?