Form_submissions of a contact in API v4 using Private apps

I have seen that in the documentation of the API v1 there is some form_submissions, that I can’t find in the v4. There is some way to access it, or I have to use the v1? Because I think the python library that exists only supports v4, and in some cases v3, but never v1.

So, this will make me have the same table of contacts, and then do a join betweehn the contacts_v1 to the contacts_v4 to have the form_submissions? Seems not a good solution.

@set92 - There does seem to be a missing call in the current forms API documentation at Accounts Dashboard | HubSpot

This seems to be a v3 API not v4 documentation.

I am able to use the v3 form of the submit call as follows:

https://api.hsforms.com/submissions/v3/integration/secure/submit/{portal_id}/{form_id}

I code this directly in Python using the requests library.

Steve

I’m u

Hi Steve, your answer seems is not what I was searching, that endpoint I think is documented here, (not sure of the extra /secure/), but yours is intended to submit a form, and what I want to do is grab all the form submissions of each user.

In v1, this could be done calling directly to `https://api.hubapi.com/contacts/v1/lists/all/contacts/all`, since that returns a list of form-submissions. In v4 I haven’t found a way of doing it. So, I suppose I will need to maintain a table of contacts for v1, and another for v4…