Demo How language detect works in HubSpot ? Text_LanguageDetect is a PHP library renowned for its language detection capabilities. Although natively designed for PHP, you can harness its power within your HubSpot workflows using a custom code block in JavaScript. Let’s explore how this library...
What is HubSpot-OperationHub-cca-compiler? HubSpot-OperationHub-cca-compiler is a local development tool that provides a framework for working on your Custom Coded Actions (CCAs) locally and executing them in the same context as HubSpot. With this tool, you can write your CCAs using the libraries yo...
Concept PeopleDataLabs API key You need to get an API key on the PeopleDataLabs website’s. You need to set the peopleDataLabsAPI key in the secret, the API key has to be set in the secret section of the Custom Coded Action. Use the name peopleDataLabsAPI Set the domain name variable Set the va...
The idea is to split an email by a delimiter if one exists, then search in a huge first names list for a match. Take a look at this video to see the logic in action Follow this video to implement this Custom Coded Action Here’s where you will find the code : https://github.com/Antoinebr/HubSpo...
The logic we want to create As you can see the deal is renamed based on the existing deals Prerequisites HubSpot and Operations Hub Basic JavaScript knowledge Node.js installed on your computer ( if you want to follow along the coding part ) An API key for your portal ( private App token ) The [&hel...
Enrichir son CRM HubSpot en se basant sur le SIRET Le registre du commerce à beaucoup d’informations sur vos clients, le SIRET peut vous aider à les récupérer et enrichir votre CRM. Depuis le numéro SIRET, vous pouvez notamment récupérer la raison sociale exacte d’une entreprise s...
Sentiment analysis demo The fastest way to understand what you can achieve with this automation is to watch this short video. The concept / schema The concept is pretty simple, first we get the message from a user, then we create a Workflow which will listen new tickets. This Workflow sends the cont...
Write your first Custom Coded Action In this article I’m will guide you and how to create your first Custom Coded Action. If you are not a developer this article is for you. I will explain without too much sideways how to create your first Custom Coded Action. Let’s get started Anatomy o...
What HubSpot gives us by default On the platform in a Workflow, if you add a Custom Coded Action block, you have an interface where you can select the programming language you would like to use. A dropdown to manage / use your API secrets etc… Underneath, you can write your code, but in that [...
Having unique data in a CRM system is important because it can help to avoid duplicate contacts, which can be annoying for customers and can also lead to lost opportunities. For example, if a customer is contacted by multiple salespeople, they may become frustrated and less likely to do business wit...
Télécharger node depuis les sources ( apt-get…) Franchement, c’est assez pénible et c’est prompt à encore plus d’erreur. Car si vous êtes ici, c’est que quelque chose ne se passe pas comme prévu. Bref, je vous déconseille cette solution. Utiliser le package « n...
Le setup est extrêmement simple, il vous faudra l’accès à votre serveur Linux Debian ou Ubuntu. Il faudra aussi installer Apache2 si ce n’est pas déjà fait. Déployez votre code sur le serveur Je ne vais pas détailler ici la méthode pour téléverser votre code sur votre propre se...
Dans un projet vue.js commencez par installer vueX Installez vueX avec npm npm install vuex --save Créez un store Créez un store dans votre application. J’ai décidé de créer un dossier store à la racine de mon projet. Dans le fichier ./store/store.js // ./store/store.js import Vue from '...
Installer les containers Le plus simple est d’utiliser un fichier docker-compose.yml Créez le fichier docker-compose.yml suivant à la racine de votre projet. php_apache: image: webdevops/php-apache:7.1 links: - db:mysql ports: - 8989:80 volumes: - ./:/app/ - ./php.ini/:/opt/docker/etc/php/ph...
Un point important à sous-lignée sur Angular c’est sur l’affichage des images. En effet si nous avions le chemin vers une image dans notre array de donnée nous serions tentés d’essayer de l’afficher comme ceci : <img src="{{product.images[0].full}}"/> Mais cela ne f...