# Integration via LeadConduit

**URL:** https://forum.mautic.org/t/integration-via-leadconduit/2844
**Category:** Product Support
**Created:** [November 26, 2015, 12:54am UTC](https://forum.mautic.org/t/integration-via-leadconduit/2844 "2015-11-26T00:54:18Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Deasel](https://avatars.discourse-cdn.com/v4/letter/d/779978/32.png) [@Deasel](https://forum.mautic.org/u/Deasel)
#### Post date: [November 26, 2015, 12:54am UTC](https://forum.mautic.org/t/integration-via-leadconduit/2844/1 "2015-11-26T00:54:18Z")

</div>

I’m currently trying to figure out how I can provide 3rd party lead sellers the ability to post leads using an HTTP Post method through LeadConduit. I’ve successfully posted leads from a test site to another site where I’ve setup Mautic with:

Code:

  
I've tried to setup the same posting link in LeadConduit (

Code:

http://www.example.com/form/submit?formId=1

) with these parameters:  
firstname=#{first\_name}&lastname=#{last\_name}&email=#{email}&phone=#{phone\_home}&zipcode=#{postal\_code}&xxLeadId=#{xxLeadId}  
  
So far nothing I've done in LeadConduit has made a difference in adding the lead to my Mautic build, but if use a Mautic form on a remote site it adds perfectly. Does Mautic accept querystring HTTP posting, or is there something I need to do differently to make this possible in LeadConduit? They do offer the ability for custom HTTP POST delivery using Request Headers, but I have no idea if that would make it work or even what Headers and values I would add. Any suggestions?

---

<div class="post-metadata">

### Author: ![Deasel](https://avatars.discourse-cdn.com/v4/letter/d/779978/32.png) [@Deasel](https://forum.mautic.org/u/Deasel)
#### Post date: [November 26, 2015, 12:54am UTC](https://forum.mautic.org/t/integration-via-leadconduit/2844/2 "2015-11-26T00:54:18Z")

</div>

I’m currently trying to figure out how I can provide 3rd party lead sellers the ability to post leads using an HTTP Post method through LeadConduit. I’ve successfully posted leads from a test site to another site where I’ve setup Mautic with:

```auto
<form autocomplete="false" role="form" method="post" action="http://www.example.com/form/submit?formId=1" id="mauticform_abc" data-mautic-form="abc">
```

I’ve tried to setup the same posting link in LeadConduit (`http://www.example.com/form/submit?formId=1`) with these parameters:  
firstname=#{first\_name}&lastname=#{last\_name}&email=#{email}&phone=#{phone\_home}&zipcode=#{postal\_code}&xxLeadId=#{xxLeadId}

So far nothing I’ve done in LeadConduit has made a difference in adding the lead to my Mautic build, but if use a Mautic form on a remote site it adds perfectly. Does Mautic accept querystring HTTP posting, or is there something I need to do differently to make this possible in LeadConduit? They do offer the ability for custom HTTP POST delivery using Request Headers, but I have no idea if that would make it work or even what Headers and values I would add. Any suggestions?

---

<div class="post-metadata">

### Author: ![healthstatus](https://avatars.discourse-cdn.com/v4/letter/h/9f8e36/32.png) [@healthstatus](https://forum.mautic.org/u/healthstatus)
#### Post date: [November 26, 2015, 1:13am UTC](https://forum.mautic.org/t/integration-via-leadconduit/2844/3 "2015-11-26T01:13:06Z")

</div>

I went through a lot of trial and error to get Mautic to accept post data via a legacy app. One thing you will definitely need to adjust is that the element names are mauticform[firstname], mauticform[email] etc. Also you will need a mauticform[return] added into the list (doesn’t matter the value, it doesn’t do anything with it, it just needs some URL string to make it happy). I am not familiar with the LeadConduit product so I really can’t help with any of those details.

---

<div class="post-metadata">

### Author: ![silavapi](https://sea2.discourse-cdn.com/flex020/user_avatar/forum.mautic.org/silavapi/32/7424_2.png) [@silavapi](https://forum.mautic.org/u/silavapi)
#### Post date: [February 2, 2020, 10:56pm UTC](https://forum.mautic.org/t/integration-via-leadconduit/2844/4 "2020-02-02T22:56:51Z")

</div>


