hubspot-php icon indicating copy to clipboard operation
hubspot-php copied to clipboard

How to fill conversion page ?

Open PubliAlex opened this issue 7 months ago • 0 comments

Hello,

I use this SDK to send form submissions to hubspot, it works, but I don't know how to fill the conversion page informations :

Image

Here is my object :

                $data = [
                    'fields' => [
                        ['name' => 'email', 'value' => $formdata['Email']],
                        ['name' => 'firstname', 'value' => $formdata['Prénom']],
                        ['name' => 'lastname', 'value' => $formdata['Nom']],
                        ['name' => 'phone', 'value' => $formdata['Téléphone']],
                        ['name' => 'message', 'value' => $formdata['Message']],
                    ],
                    'legalConsentOptions' => [
                        'consent' => [
                            'consentToProcess' => true,
                            'text' => 'I agree to allow Example Company to store and process my personal data.',
                        ],
                    ]
                ];

any help would be much appreciated.

thank you

PubliAlex avatar Jul 04 '25 14:07 PubliAlex