Synchronize data from Salesforce To External system

Synchronize data from Salesforce to external system   In this tutorial we will see how can we Synchronize data from Salesforce To External system There are multiple options provided to sync the data between Salesforce and external system   Platform events Use platform events to connect business processes in Salesforce and external sources through the…

Share this:
Read More

Upsert Records In Salesforce

Upsert Records In Salesforce   In this tutorial we will demonstrate how to Upsert Records In Salesforceusing Using Salesforce upsert operation. Using the upsert operation, you can either insert or update an existing record in one call. To determine whether a record already exists, the upsert statement or Database method uses the record’s ID as the key to match…

Share this:
Read More

Query Data From Salesforce Object

Query Data From Salesforce Object   This tutorial talks about how to query data from salesforce object using salesforce connector. Prerequisites: Installing Salesforce connector(by login into anypoint exchange from studio you can install the Salesforce connector) Salesforce developer account Security token Consumer key and secret(If you are using the Salesforce connector to access an OAuth API,…

Share this:
Read More

Authenticate Salesforce Using OAUTH 2.0

Authenticate Salesforce Using OAUTH 2.0   In this tutorial we will demonstrate how can we Authenticate Salesforce Using OAUTH 2.0 OAuth 2.0 is an open protocol that authorizes secure data sharing between applications through the exchange of tokens. For client application to access REST API resources, it must be authorized as a safe visitor. To…

Share this:
Read More

Consume Generic Events From Streaming Channel

Push/Subscribe Generic Events Using Streaming Channel   This tutorial talks about how to push to and subscribe from the Salesforce streaming channel. Streaming channel is used to push the generic or custom message and subscribe those event/message for further processing A StreamingChannel that defines the channel, with a name that is case-sensitive One or more clients subscribed…

Share this:
Read More

Create Streaming Channel

Create/Publish Streaming Channel   Streaming channel is used to push the generic or custom message and subscribe those event/message for further processing, lets see how we create/publish streaming channel in Salesforce A StreamingChannel that defines the channel, with a name that is case-sensitive One or more clients subscribed to the channel Prerequisites: Installing salesforce connector(by login into…

Share this:
Read More

Replay Topic

Replay a Topic   In last tutorial I have demonstrate how to subscribe the topic, there is another way to read events from salesforce using Replay a topic which provides various options to read the events. The Replay Topic Listener operation provides below options: ALL: Subscriber receives all events, including past events that are within…

Share this:
Read More

Subscribe Topic

Subscribe to a Topic   To subscribe to a topic, add the Subscribe topic listener (subscribe-topic-listener) or Replay topic listener (replay-topic-listener) as an input source for your flow from mule palette The input source acts as an inbound endpoint. Every time the subscription receives an event, the input source executes the rest of the flow…

Share this:
Read More

Publish Topic

Publish Topic   To receive events for Salesforce changes associated with a topic, you must create the topic, if it does not exist. When you create a topic, the connector creates a PushTopic, which is a special object in Salesforce that binds a name (in this case, the topic’s name) and a Salesforce Object Query…

Share this:
Read More