I want to connect hubspot to a specialized linkedin based crm called breakcold.
The API documentation is present (Introduction) nevertheless I don’t have the closes know-how to what it means and how to make it an app (or is it called node).
Basically I just want to get new contacts added in hubspot over to breakcold. Any guidance or help in making an app/node for breakcold would be much appreciated.
Hi @anilerkan, if you want to build a full blown node you could start with this video tutorial recorded last year:
This is a lot of work though and probably not necessary based on what you have described:
I just want to get new contacts added in hubspot over to breakcold
I reckon these contacts would be leads? It looks like that’s needed is the request described here: Create a lead
So essentially a POST request to https://api.breakcold.com/lead with an x-api-key header containing your actual API key plus all the fields you want to set. This should work fine with the HTTP Request node in n8n. Perhaps you want to give the below workflow a go? Make sure to add your actual API token to the respective header field.
Once that’s working you could remove the secret API key from the node itself and instead save it as a credential so you can re-use it.