Exemples par secteur
Templates prêts à l'emploi : avocats, SaaS, conciergerie.
Une bibliothèque de workflows prêts à l'emploi, classés par secteur. Importables en 1 clic depuis Workflows → Templates.
⚖️ Avocats
Alerte urgence garde à vue
yaml
1name: Alerte urgence — Garde à vue2trigger:3 type: keyword_detected4 keywords: ["garde à vue", "comparution immédiate", "perquisition"]5actions:6 - type: slack_notify7 channel: "#urgences"8 message: |9 🚨 URGENCE — {{ contact.name }} mentionne : {{ keyword }}10 Conversation : {{ conversation.url }}11 Numéro de téléphone : {{ contact.phone }}12 - type: change_priority13 priority: urgent14 - type: add_tag15 tag: "urgence-gav"Routage par matière juridique
yaml
1name: Routage matière → opérateur spécialisé2trigger:3 type: keyword_detected4 keywords: ["divorce", "garde enfants", "pension"]5actions:6 - type: assign_to_operator7 operator_id: "op_marie_droit_famille"8 - type: add_internal_note9 note: "Matière détectée : droit de la famille (Marie)"🎯 Coachs
Qualification budget avant Calendly
yaml
1name: Filtre budget — Coaching scale2trigger:3 type: lead_qualified4conditions:5 - field: lead.budget_per_month6 operator: greater_than7 value: 10008actions:9 - type: send_ai_message10 text: "Parfait, votre budget matche votre offre Scale 💪 Voici un créneau pour notre appel : {{ calendly_url }}"11 - type: add_tag12 tag: "qualified-scale"Capture discovery call
yaml
1name: Discovery call — Lead capture2trigger:3 type: contact_created4 source: pre-chat-form5actions:6 - type: send_email7 template: "discovery-call-invitation"8 - type: wait9 duration: "24h"10 - type: condition11 if: "{{ contact.has_booked_call }} == false"12 then:13 - type: send_email14 template: "discovery-call-followup"🏠 Conciergerie Airbnb
Escalade urgence nocturne
yaml
1name: Escalade urgence — Hors heures2trigger:3 type: message_received4conditions:5 - field: now.hour6 operator: outside_range7 value: [9, 19]8 - field: message.sentiment9 operator: equals10 value: "negative"11actions:12 - type: sms_send13 to: "{{ env.ASTREINTE_PHONE }}"14 text: |15 Urgence nocturne — {{ contact.name }}16 Apt : {{ contact.apartment }}17 Message : {{ message.text | truncate(200) }}18 - type: change_priority19 priority: urgentMulti-langue auto
yaml
1name: Voyageur EN/DE → opérateur natif2trigger:3 type: language_detected4conditions:5 - field: language6 operator: in7 value: ["en", "de"]8actions:9 - type: assign_to_operator10 operator_group: "international-team"11 - type: add_tag12 tag: "lang-{{ language }}"🚀 SaaS
Welcome trial J0
yaml
1name: Welcome trial — Activation J02trigger:3 type: contact_created4 source: trial-signup5actions:6 - type: send_ai_message7 text: "Bienvenue {{ contact.firstName }} 🎉 Une question pour bien démarrer : quel use case principal ?"8 - type: wait9 duration: "1h"10 - type: condition11 if: "{{ contact.has_used_feature_x }} == false"12 then:13 - type: send_email14 template: "feature-x-tutorial"Détection churn MRR-based
yaml
1name: Churn detection — Silence + downgrade2trigger:3 type: inactivity4 days: 145conditions:6 - field: contact.mrr7 operator: greater_than8 value: 1009 - field: contact.last_session_count10 operator: less_than11 value: 312actions:13 - type: slack_notify14 channel: "#cs-alerts"15 message: |16 ⚠️ Churn risk : {{ contact.name }} ({{ contact.mrr }}€ MRR)17 Silence : {{ days_inactive }}j · Sessions/sem : {{ contact.last_session_count }}18 - type: assign_to_operator19 operator_group: "customer-success"20 - type: add_tag21 tag: "at-risk"🛍️ E-commerce
Panier abandonné
yaml
1name: Panier abandonné — Relance 1h2trigger:3 type: webhook4 source: shopify5 event: "checkouts/create"6actions:7 - type: wait8 duration: "1h"9 - type: condition10 if: "{{ checkout.completed }} == false"11 then:12 - type: send_ai_message13 text: "Bonjour ! Vous avez laissé {{ checkout.line_items_count }} produit(s) dans votre panier. Besoin d'aide pour finaliser ? 🛍️"14 - type: add_tag15 tag: "abandoned-cart"Et après ?
Cette page vous a été utile ?
Modifié le · Suggérer une amélioration