MeltanoLabs / tap-hubspot

Other
1 stars 7 forks source link

support form submissions #78

Open techieshark opened 2 months ago

techieshark commented 2 months ago

This would be useful: https://legacydocs.hubspot.com/docs/methods/forms/get-submissions-for-a-form

Example GET URL: https://api.hubapi.com/form-integrations/v1/submissions/forms/583d14ff-91af-403d-b94a-c8b5d954da6f

Example response:

{
 "results": [
   {
     "submittedAt": 1547130102576,
     "values": [
       {
         "name": "email",
         "value": "example@example.com"
       },
       {
         "name": "company",
         "value": "Example Co"
       },
       {
         "name": "phone",
         "value": "123 555 4567"
       }
     ],
     "pageUrl": "https://www.example.com/form"
   },

See also:

Note: