Happy to shed some lights here! It looks like whenever there's a new contact created in HubSpot, you'd like the contact details to be sent to your other platform. In this case, you can use both the Webhook API and Get a contact by its vid API:
To start, these are some prerequisites when looking to use the Webhook API: Integration Platform API Prerequisites --> In short, you would need to create an app and install the app into the HubSpot portal that the salesman is creating contacts on
Once that's done, go ahead and set up your webhook and subscribe to the 'contact creation' event
Next, from the Webhook subscription response, you can grab the id of the object and use this endpoint: Get a contact by its vid to get the contact details to sent over to your other platform
Happy to shed some lights here! It looks like whenever there's a new contact created in HubSpot, you'd like the contact details to be sent to your other platform. In this case, you can use both the Webhook API and Get a contact by its vid API:
To start, these are some prerequisites when looking to use the Webhook API: Integration Platform API Prerequisites --> In short, you would need to create an app and install the app into the HubSpot portal that the salesman is creating contacts on
Once that's done, go ahead and set up your webhook and subscribe to the 'contact creation' event
Next, from the Webhook subscription response, you can grab the id of the object and use this endpoint: Get a contact by its vid to get the contact details to sent over to your other platform