APIs & Integrations

altjx
Colaborador(a)

Creating company via domain name

resolver

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.

0 Avaliação positiva
1 Solução aceita
IsaacTakushi
Solução
HubSpot Employee
HubSpot Employee

Creating company via domain name

resolver

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 Takushi

Associate Certification Manager

Exibir solução no post original

0 Avaliação positiva
1 Resposta 1
IsaacTakushi
Solução
HubSpot Employee
HubSpot Employee

Creating company via domain name

resolver

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 Takushi

Associate Certification Manager
0 Avaliação positiva