Hi.
I could not find a post similar to my predicament. My apologies if one exists, I have spent a good hour looking.
I am the developer for a website that generates leads for our clients. We have integrated with a variety of CRM’s upon request and am now attempting to integrate with Hubspot.
Is it possible, via API or any other method, to push generated leads originating on my platform to my clients Hubspot CRM (which I have no ownership or control over)?
I have been looking closely at the below example:
curl --request POST \
--url ‘https://api.hubapi.com/crm/v3/objects/contacts?hapikey=YOUR_HUBSPOT_API_KEY’ \
--header ‘content-type: application/json’ \
--data ‘{
“properties”: {
“company”: “Biglytics”,
“email”: “bcooper@biglytics.net”,
“firstname”: “Bryan”,
“lastname”: “Cooper”,
“phone”: “(877) 929-0687”,
“website”: “biglytics.net”
}
}’
But this is lacking any way of specifying the account I wish to push to (since my own API key would be used, it would push to my account. I do not want this)
From reading the API’s it really looks as though I can only push leads to my own Hubspot CRM (which I do not have/need).
I look forward to hearing from the community.
Thank you!