简体   繁体   中英

How to create a prospect in hubspot using the Form API?

I am trying to create a prospect in hubspot by submission of the form. Following is the code that i have written.

<?php
    function send_lead() {
    $hubspotutk = $_COOKIE['hubspotutk'];
    $ip_addr = $_SERVER['REMOTE_ADDR'];
    $hs_context = array(
        "hutk" => $hubstoputk,
        'ipAddress' => $ip_addr,
         'pageName' => 'Test Form'
       );

    $hs_context_json = json_encode($hs_context);
    //Need to populate these varilables with values from the form.
    $str_post ="email=" . urlencode($_POST["email"])
                    . "&hs_context=" . urlencode($hs_context_json);  //Leave this one be :)'

    //replace the values in this URL with your portal ID and your form GUID
    $endpoint = 'https://forms.hubspot.com/uploads/form/v2/portal-id/form-id';
    $ch = @curl_init();
    @curl_setopt($ch, CURLOPT_POST, true);
    @curl_setopt($ch, CURLOPT_POSTFIELDS, $str_post);
    @curl_setopt($ch, CURLOPT_URL, $endpoint);
    @curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
    @curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $response = @curl_exec($ch);  //Log the response from HubSpot as needed.
    @curl_close($ch);
    echo $response;

}
?>

I get an empty response. Can anyone tell me whats wrong with my code?

A response of 204 is received from Hubspot when the form submission is successful. A 204 is a response with no content.

Hubspot form api reference can be found here: http://developers.hubspot.com/docs/methods/forms/submit_form

Spelling mistake in the variable name. Use $hubspotutk in the $hs_context array.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM