APIs & Integrations

shashigharti
Member

Submit multiple data by same contact

Hi,

I am new to hubspot. Is it possible to submit multiple data to the form by same user. And can I retrieve different submitted versions based on some query parameters?

Thank you!

With Regards,

0 Upvotes
2 Replies 2
Derek_Gervais
HubSpot Alumni
HubSpot Alumni

Submit multiple data by same contact

Hi @shashigharti,

A contact can submit a form multiple times; each submission will update the contact’s properties with new values, and there isn’t currently an API to get specific form submissions. You can pull the contact record using the Contacts API, however:

Get a contact by its vid

GET /contacts/v1/contact/vid/:vid/profile - For a given portal, return information about a single contact by its ID. The contact's unique ID's is stored in a field called 'vid' which stands for 'visitor ID'.

0 Upvotes
shashigharti
Member

Submit multiple data by same contact

Thanks Derek for the reply. If so, I will try a different solution for my problem

Thank you.