You need to sign in to do that
Don't have an account?

Streaming API
Can Streaming API be used to get data from external API into SFDC rather than send from SFDC ???
So basically Salesforce acts as a client rather than server..
So basically Salesforce acts as a client rather than server..
Apex REST might work for you. It allows you to create an Apex method that acts as an API endpoint and can act on the data it receives when that endpoint is called. There's a good example here (https://developer.salesforce.com/page/Creating_REST_APIs_using_Apex_REST). You would just creat the rest method and then configure your service to post to that endpoint when something happens that Salesforce needs to know about.
All Answers
Apex REST might work for you. It allows you to create an Apex method that acts as an API endpoint and can act on the data it receives when that endpoint is called. There's a good example here (https://developer.salesforce.com/page/Creating_REST_APIs_using_Apex_REST). You would just creat the rest method and then configure your service to post to that endpoint when something happens that Salesforce needs to know about.
Really appreciate your response.
I already have a REST service in a Batch job getting the data currently.
The problem is we are modifying our endpoint and running into timeout issue.
So we are looking at options other than REST to try and real-time the data.
Thanks!