一貫したアウトリーチで返信率が25%向上。 リードが「Hot」スコア(80+)に達した際の即時Slackアラート。クイックアクションボタン:CRM表示、メール送信、電話予約を含みます。
🔥 Hot Lead Alert{{lead_name}} at {{company_name}} just hit Hot score ({{score}}/100) Recent activity: • Viewed pricing page 3x in 24h • Downloaded case study • Requested demo Actions: View in CRM, Send Email, Schedule Call
成長企業が3部門に新しいソフトウェアを導入。タイムライン:30日間のパイロット、60日間のロールアウト、90日間の最適化。
Improved efficiency and measurable ROI.
チームリーダーが懐疑的なチームメンバーと一緒に導入を推進。アプローチ:最初にクイックウィン、その後6週間で高度な機能。
Improved efficiency and measurable ROI.
👤 All Sales Leader
Pain Points:
Goals:
Configure Slack integration
Set up the webhook URL in Optifai settings.
Customize alert triggers
Define which events should generate notifications.
Set up routing
Direct alerts to appropriate channels or team members.
Test the workflow
Trigger a test alert to verify formatting and delivery.
Monitor and refine
Adjust thresholds based on alert volume and team feedback.
このテンプレートをアプリケーションに統合するためのコードサンプルです。
// Track pricing page visits with GA4
gtag('event', 'page_view', {
page_title: 'Pricing',
page_location: window.location.href,
page_path: '/pricing',
engagement_time_msec: 100
});
// Send visit data to Optifai
async function trackPricingVisit(visitorId) {
await fetch('https://api.optif.ai/v1/signals', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + API_KEY
},
body: JSON.stringify({
event: 'pricing_page_view',
visitor_id: visitorId,
timestamp: new Date().toISOString(),
metadata: {
referrer: document.referrer,
time_on_page: performance.now()
}
})
});
}💡 API_KEY を実際のOptifai APIキーに置き換えてください。APIキーは設定 → API/Webhookから取得できます。
他にご質問がありますか?お気軽にお問い合わせください。