APIs & Integrations

altjx
投稿者

Creating company via domain name

解決

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 いいね!
1件の承認済みベストアンサー
IsaacTakushi
解決策
HubSpot Employee
HubSpot Employee

Creating company via domain name

解決

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 いいね!
1件の返信
IsaacTakushi
解決策
HubSpot Employee
HubSpot Employee

Creating company via domain name

解決

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 いいね!