We use cookies to make HubSpot's community a better place. Cookies help to provide a more personalized experience and relevant advertising for you, and web analytics for us. To learn more, and to see a full list of cookies we use, check out our Cookie Policy (baked goods not included).
Oct 11, 2018 10:59 PM
I am trying to create a company via its domain name through the API. Is this possible?
I've been using the Hubspot API for quite some time now and things have been working flawlessly. I've been hesitating to research this one issue that I have because I'm afraid it's not possible. However, now that I'm expanding the functionality of my application, I am really curious to adding a company via its domain is popular at all.
Any assistance would be greatly appreciated.
Solved! Go to Solution.
Oct 12, 2018 10:27 AM
Hi @altjx,
You can certainly create a company via this endpoint and include the domain
property and value, but it's not required in order to create a company record.
Here's a simple POST
body that would create a company record for HubSpot:
{
"properties": [
{
"name": "name",
"value": "HubSpot"
},
{
"name": "domain",
"value": "www.hubspot.com"
}
]
}
Isaac TakushiAssociate Certification Manager |
Oct 12, 2018 10:27 AM
Hi @altjx,
You can certainly create a company via this endpoint and include the domain
property and value, but it's not required in order to create a company record.
Here's a simple POST
body that would create a company record for HubSpot:
{
"properties": [
{
"name": "name",
"value": "HubSpot"
},
{
"name": "domain",
"value": "www.hubspot.com"
}
]
}
Isaac TakushiAssociate Certification Manager |