npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-red-contrib-salesforce-fix

v0.8.5

Published

A set of Node-RED nodes to interact with Salesforce and Force.com.

Downloads

9

Readme

node-red-contrib-salesforce

Greenkeeper badge

Build status of master branch

A set of Node-RED nodes to interact with Salesforce and Force.com.

Install

Run the following command in the root directory of your Node-RED install

npm install -s node-red-contrib-salesforce

Usage

Each node uses a connection object to hold and share Salesforce connected app settings (consumer key, consumer secret, username, etc.). This determines the org that each node operates against. Credential information can alternatively been supplied by environment variables (Heroku, Bluemix, Azure friendly) or in the msg object.

SOQL

Executes a SOQL query

select id, name
from contact
limit 2

If "Return JSON only" is selected, message.payload contains an array of result objects. Otherwise the resulting message has the following properties:

  • msg.payload.size - the number of records returned from the query
  • msg.payload.records - the array of javascript nForce objects returned from the query. The nforce objects are useful for doing updates etc., as they have dirty checking and are already structured for an DML update, but do not match what Node-Red debug window shows.

The query can be configured in the node, however if left blank, the query should be set in an incoming message on msg.query. See the Salesforce SOQL documentation for more information.

SOSL

Executes a SOSL query

FIND {united*} IN ALL FIELDS
RETURNING Account (Id, Name), Contact (Id, Name)

The resulting message has the following properties:

  • msg.payload.size - the number of records returned from the query.
  • msg.payload.records - the array of records returned from the query.

The query can be configured in the node, however if left blank, the query should be set in an incoming message on msg.query. See the Salesforce SOSL documentationor more information.

DML

Executes an insert, update, upsert or delete DML statement.

The action and object can be configured in the node, however if left blank, the following should be set in an incoming message:

  • msg.action - the DML action to perform
  • msg.object - the sObject for the DML action

Insert Action

This action inserts the contents of msg.payload and returns the newly created ID.

{
  "firstname": "Nikola",
  "lastname": "Tesla"
}

Update Action

This action updates the specified record with the the contents of msg.payload. It assumes that the payload contains an id property with the id of the record to be updated.

{
  "id": "00337000002uFbW",
  "firstname": "Nikola",
  "lastname": "Tesla"
}

Upsert Action

The upsert action matches contents of the msg.payload with existing records by comparing values of one field. If you don’t specify a field when calling this action, the operation uses the id value in the msg.payload to match with existing records to update. Alternatively, you can specify a field to use for matching in msg.externalId. This field must be marked as external ID. If a matching record is not found, a new records is inserted.

Sample msg.payload to be used with an external id.

{
  "firstname": "Nikola",
  "lastname": "Tesla"
}

Sample msg.externalId specifying the field and value to be used for matching.

{
  "field": "Ext_ID_c",
  "value": "12345"
}

If record(s) are updated, the resulting payload will resemble:

{
  "payload": {
    "success": true,
    "object": "contact",
    "id": {
      "field": "Ext_ID__c",
      "value": "12345"
    },
    "action": "update"
  }
}

If a new record is inserted, the resulting payload will resemble the following containing the id of the newly created record:

{
  "payload": {
    "success": true,
    "object": "contact",
    "id": "00337000002uwUVAAY",
    "action": "insert"
  }
}

Delete Action

This action deletes the record specified by the id property in msg.payload.

{
  "id": "00337000002uwUVAAY"
}

See the Apex DML Operations for more information.

Streaming

Creates a client that subscribes to topics for the Streaming API.

Subscription starts once a msg is received as input. The msg object payload gets ignored, but the following properties are used when present:

  • action: subscribe or unsubscribe When no action is configured it defaults to subscribe. An unknown value for action is interpreted as unsubscribe
  • topic: the subscription topic to listen to, defaults to the one from configuration. Topic needs to be complete and start with /. See inline help for options
  • sf : object with Salesforce credentials: username, password, clientSecret, clientToken. Can have just one of these. Uses configuration values as default

Supported events to subscribe

  • Platform events: /event/[NameOfPlatformEvent] -> Listen to the Platform event API
  • Push Topic: /topic/[NameOfPushTopic] -> Listen to changes in sObjects
  • Streaming (Generic): /u/notifications/[SomeChannelName] -> Listen to generic Push Topics (deprecated)
  • Change Data Capture:
    • All configured changes: /data/ChangeEvents
    • Opportunity: /data/OpportunityChangeEvent (Same for other Standard objects)
    • Custom object: Custom__ChangeEvent (replacing __c with __ChangeEvent

Check the Developer guide for more details. When the client receives a message it sends msg.payload with the following:

  • msg.payload.event - the information on the event that was received.
  • msg.payload.sobject - the sobject information received.

Assuming a PushTopic was created with the query SELECT Id, Name FROM Contact, then a resulting message would look like:

{
  "event": {
    "type": "updated",
    "createdDate": "2015-07-31T18:38:21.000+0000"
  },
  "sobject": {
    "Name": "Nikola Tesla",
    "Id": "a0037000001pplrZZZ"
  }
}

See the Quick Start Using Workbench to get started or the Streaming API documentation for complete details.

Outbound Messages (OBM)

When used with an http in node, parses the XML from a Salesforce Outbound Message to a JSON object. The resulting msg.payload should look something like:

{
  "organizationId": "00D37000000PdLZAE1",
  "actionId": "04k370000008OrqZZE",
  "sobject": {
    "type": "Contact",
    "id": "a0037000001I1EvWWO",
    "name": "Nikola Tesla",
    "firstname": "Nikola",
    "lastname": "Tesla"
  },
  "sessionId": "00D37000000PdLB!"
}

Connect this node downstream from a POST http input node to parse the XML received from an Outbound Message call from Salesforce. Use the URL from the http in node for the Endpoint URL for your Outbound Message. See the Salesforce Setting Up Outbound Messaging documentation for more information.

Chatter

Posting chatter messages to users or objects. The msg payload turns into the body of the chatter message. Currently only plain text is supported.

{
  "payload": "Hello World",
  "title": "Message title",
  "ParentId": "ID of object",
  "RelatedRecordId": "RelatedRecord"
}

When ParentId is not supplied, the user specified in the configuration is used. RelatedRecordId is optional.

Return value is similar (for now) to object insert