Platform Events
Platform events are the preferred method for sending messages to initiate realtime transactions.
Available Propel Platform Events
Platform Event Name | When the event fires | Object |
---|---|---|
Item Change | When a new item is created, and Is Create flag = true | Item |
Publish Item Revision | When an item revision is released | Item |
Supersede Item Revision | When an item revision has been superseded by the release of a new latest released revision | Item |
Change Event | When a change is approved, the event's Is Approved flag = true | Change |
Change Event | When a change is cancelled, the event's Is Cancelled flag = true | Change |
Change Event | When the change's phase is updated, the event's Is Update flag = true | Change |
Quality Event | When a quality is approved, the event's Is Approved flag = true | Quality |
Quality Event | When a quality's phase is updated, the event's Is Update flag = true | Quality |
Creating Custom Platform Events
To create your own custom platform events, see the Platform Events Developer Guide.
Subscribing to a Platform Event Example
Subscribing to a Platform Event and receiving messages is a straightforward process involving very little code.
To begin, identify the Platform Event you'd like to subscribe to. In this example, we'll be subscribing to a Platform Event event that exists in the Propel Managed Package called PDLM__Change_Event__e
. You can see the sample code here.
1. Using the JSForce library, authenticate with Propel
In the sample code, remember to modify your username and password in the config.editme.js
file and remove the editme
string from the filename.
2. Subscribe to a Platform Event
Now that you're authenticated, add a few lines of code to subscribe to the Platform Event. Make sure that you use the API Name of the event. For example the Change Event
in the table above would translate to PDLM__Change_Event__e
. You can find the API names of Platform Events in Salesforce Setup > Integrations > Platform Events.
3. Trigger your Platform Event
Now that your code is written, run the local server by entering node index.js
in terminal.
After you've started the server, open your Propel org and complete the action in the interface that will trigger the Platform Event. In this example, we will release a change order in Propel to trigger the Change_Event
Platform Event.
The results will display in the console with a response similar to the following: