Skip to main content
Sharath Jallu (Infosys) a posé une question dans Integration

Third party system has Real Time data change. How do we suggest them to integrate with Salesforce to sync data?

Like CDC, Platform Events, Streaming API or any other middleware systems like mulesoft or Heroku to be used ?

 

Looking for a design to this use case.

#Integration Architect #Integration #Integration Platform

1 réponse
  1. 24 août 2023, 10:23

    Basically we have three ways to achieve this. 

    1. We can use external libraries to call this Api whenever data is changed. that will help you to manage calling interval in the LWC component.

    2. If the API platform supports web sockets then it will be so great because it will allow LWC component to call that particular API. Web Socket implemented on the API platform will be triggered when data will be changed on API platform & will let our LWC component that data is being changed and now we can refresh the data via new API call.

    3. If we are unable to find any external library and our API platform doesn't support Web Sockets then we only have one option that is using Interval in out LWC component that will call that API frequently in some times.

0/9000