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
ET 10ET 10 

Passing a variable from a third party app to salesforce

Hi, I am looking to pass a variable from a third party app to salesforce. Can you point me in the right direction for how to go about doing this?
AnudeepAnudeep (Salesforce Developers) 
Hi Earlene, 

The simplest way to do this is by exposing an apex method as a Rest resource so that your 3rd party can invoke and pass a parameter

See this blog post to learn more

https://webkul.com/blog/httpget-annotation-salesforce/

Let me know if this helps