ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Hubspot Crm

Skill by mibbou

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/mibbou/hubspot-crm
Or

Skill HubSpot CRM — USC SYNERGY

Description

Gestion complète du CRM HubSpot pour USC SYNERGY (centre de formation VAE). Permet de rechercher, créer, modifier des contacts et deals, gérer les associations, et suivre le pipeline commercial.

Configuration requise

  • Variable d'environnement : HUBSPOT_ACCESS_TOKEN
  • Owner par défaut : Mark IBBOU (ID: 32587387)

Pipelines

PipelineIDUsage
Sales PipelinedefaultPipeline principal
Traitement des leads859619884Qualification prospects

Stages du Sales Pipeline (default)

StageID
Appointment Scheduledappointmentscheduled
Qualified To Buyqualifiedtobuy
Presentation Scheduledpresentationscheduled
Decision Maker Bought-Indecisionmakerboughtin
Contract Sentcontractsent
Closed Wonclosedwon
Closed Lostclosedlost

Propriétés contact importantes

  • phone, mobilephone, hs_whatsapp_phone_number — Téléphones
  • source — Source du contact
  • ref — Référence interne
  • objet — Objet de la demande
  • fonction — Fonction professionnelle

Commandes disponibles

1. Rechercher un contact par téléphone

curl -s "https://api.hubapi.com/crm/v3/objects/contacts/search" \
  -H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "filterGroups": [{
      "filters": [{
        "propertyName": "phone",
        "operator": "EQ",
        "value": "NUMERO_TEL"
      }]
    }],
    "properties": ["firstname","lastname","email","phone","mobilephone","hs_whatsapp_phone_number","source","ref","objet","fonction"]
  }'

Remplacer NUMERO_TEL par le numéro au format international (+33...) Si aucun résultat, retenter avec mobilephone ou hs_whatsapp_phone_number

2. Rechercher un contact par email

curl -s "https://api.hubapi.com/crm/v3/objects/contacts/search" \
  -H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "filterGroups": [{
      "filters": [{
        "propertyName": "email",
        "operator": "EQ",
        "value": "EMAIL_ADDRESS"
      }]
    }],
    "properties": ["firstname","lastname","email","phone","mobilephone","source","ref","objet"]
  }'

3. Rechercher un contact par nom

curl -s "https://api.hubapi.com/crm/v3/objects/contacts/search" \
  -H "Authorization: Bearer $HUBSPOT_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "filterGroups": [{
      "filters": [{
        "propertyName": "lastname",
        "operator": "EQ",
        "value": "NOM_FAMILLE"
      }]
    }],
    "properties": ["firstname","lastname","email","phone","mobilephone","source","ref","objet"]
  }'

Metadata

Author@mibbou
Stars1401
Views0
Updated2026-02-24
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-mibbou-hubspot-crm": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.