Back to Registry
View Author Profile
Official Verified
Hubspot Crm
Skill by mibbou
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mibbou/hubspot-crmOr
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
| Pipeline | ID | Usage |
|---|---|---|
| Sales Pipeline | default | Pipeline principal |
| Traitement des leads | 859619884 | Qualification prospects |
Stages du Sales Pipeline (default)
| Stage | ID |
|---|---|
| Appointment Scheduled | appointmentscheduled |
| Qualified To Buy | qualifiedtobuy |
| Presentation Scheduled | presentationscheduled |
| Decision Maker Bought-In | decisionmakerboughtin |
| Contract Sent | contractsent |
| Closed Won | closedwon |
| Closed Lost | closedlost |
Propriétés contact importantes
phone,mobilephone,hs_whatsapp_phone_number— Téléphonessource— Source du contactref— Référence interneobjet— Objet de la demandefonction— 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_TELpar le numéro au format international (+33...) Si aucun résultat, retenter avecmobilephoneouhs_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
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.