Clay Icon

Help Needed: HTTP API for Creating HubSpot Contacts with Clay

Β·
Β·

Hi guys, I am looking for some help regarding the HTTP API Connection <> HubSpot (Creating a new Contact) Does anyone know the correct API Call Body for creating a new Contact in HubSpot with the enriched Profile in Clay? Also which HubSpot Key do I need for this? Thank you

  • Avatar of Muhammad S.
    Muhammad S.
    Β·
    Β·

    Go to settings, integrations, private apps, create an app, give it necessary scopes and then it will generate a token

  • Avatar of Muhammad S.
    Muhammad S.
    Β·
    Β·

    you will need to use that token to authorize your requests.

  • Avatar of Fabian G.
    Fabian G.
    Β·
    Β·

    Thank you. Do you know the exact Call Body I need? I did it to check if a client is already in hubspot but I can not get it working to actually create a new contact

  • Avatar of Muhammad S.
    Muhammad S.
    Β·
    Β·

    Method POST: https://api.hubapi.com/crm/v3/objects/contacts body: { "properties": { "firstname": "First Name", "lastname": "Last name", "email": "Validated Work Email", "company": "Company Name" } }

  • Avatar of Fabian G.
    Fabian G.
    Β·
    Β·

    thank you