Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

worksmith_salesforce

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

worksmith_salesforce

Salesforce activites for worksmith

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

worksmith_salesforce

Salesforce activities for worksmith

This package contains the following activities/tasks:

namedescription
connectLogs you into Salesforce and create a connection object for later used in other SF activites
createEntityCreates a Salesforce entity with the specified type and fields.

connect activity

Logs you into Salesforce and create a connection object for later used in other SF activites

params
nametypedescription
loginUrlstringThe SF login authority to connect agains e.g. eu5.salesforce.com
usernamestring...
passwordstring...
example
var worksmith = require('worksmith')
worksmith.use("sf", require('worksmith_salesforce'))
var wf = worksmith({task:"sequence", items : [{
    task:"sf/connect",
    loginUrl:"https://eu5.salesforce.com",
    username:"peter.zentai@*********.com",
    password:"**************************",
    resultTo: "sfcn"
}])

createEntity activity

Creates a Salesforce entity with the specified type and fields.

params
nametypedescription
connectionconnection objectusually the result of a connect actity
entityTypestringthe name of the entity type to create
fieldsobjectthe hash of the fields to create the entity with
example
{
    task:"sf/createEntity",
    connection:"@sfcn",
    entityType:"Account",
    fields: {
        Name: "PeterZentai"
    },
    resultTo:"newAccount"
}

Keywords

FAQs

Package last updated on 25 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc