function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Royston59Royston59 

An idiots guide to using HTTP PUSH

I have been asked to send leads from our SF Org that have been generated from Web to Lead Forms to an external system via HTTP PUSH. Can anyone point me in the right direction as to where to start. (Unfortunately - I have very little programming experience)

Thaks in advance
pconpcon
You can do this via the built-in REST API [1] (assuming your org type supports it) or via the SOAP API [2].  Alternately you could do this via any number of dataloaders [3] or 3rd party libraries depending on your intergration language (like jsforce [4] for nodejs).

There is no "simple" way to do what you are asking and will require some development.  If after reading over therse documents you have any specific questions, please feel free to ask.

[1] https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/
[2] https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/
[3] https://developer.salesforce.com/page/Data_Loader
[4] https://jsforce.github.io/
Royston59Royston59
How much do you charge?
Royston59Royston59

Seriously pcon - thanks for the feedback ! I have some serious reading to do!
Will let you know how I get on.