WebHook not working: Incorrect field names

  • viksonaisingh
    Asked on January 9, 2015 at 7:15 PM

    Hi Team,

     

    I am not able to notify by the web hook when i submitter the Form,

     

     

    Its not even Trigger,can you please help me to resolve issues

     

     

    WebHookURL:

     

    ------------------

    http://pastiebin.com/54b06136e5050

     

     

     

     

     

    Jotform Thread 493615 Screenshot
  • Jan
    Replied on January 10, 2015 at 10:18 AM

    Hello,

    When I checked the WebHook code, it shows that you are not using the correct field names. You should use these field names highlighted in pink.

    $body .= "FirstName: ". $obj['q10_firstName'];

    $body .= "n";

    $body .= "LastName: ". $obj['q11_lastName'];

    $body .= "n";

    $body .= "MobileNumber: ". $obj['q13_mobileNumber[full]'];

    $body .= "n";

    $body .= "EmailAddress: ". $obj['q12_emailAddress12'];

    $body .= "n";

    You can use "inspect element" in Firefox and Chrome, just right click the field and choose inspect element.

    WebHook not working: Incorrect field names Image 1 Screenshot 20

    Hope this helps. Thank you.

  • viksonaisingh
    Replied on January 11, 2015 at 1:44 PM

    Thanks buddy,for correcting me

     

    After correcting Field name ,I was submit form still notification coming from jot form Default not through Web-hooks

     

    Can you Suggest me where i was wrong or what notification i got in mail which is identified that its coming from Web hooks not through default Jotform

     

     

    Thanks