Integrate Salesforce with Email
Salesforce
CRM software solutions and enterprise cloud computing from salesforce.com, the leader in CRM and platform as a service.
Email

Bulk Operations
-
Bulk Insert
You will need to prepare a CSV file, in which columns should be named after Salesforce API field names. More info on the CSV format can be found in Salesforce Bulk API documentation. You can use Pipline Rows in the Bucket built-in channel to construct the CSV from within Cloudpipes.
-
Bulk Upsert
You will need to prepare a CSV file, in which columns should be named after Salesforce API field names. More info on the CSV format can be found in Salesforce Bulk API documentation. You can use Pipline Rows in the Bucket built-in channel to construct the CSV from within Cloudpipes.
Objects
-
- Object ID
- —
-
Object Created
Triggers when a new object is created in Salesforce. Only objects queryable by the user are shown.
-
Object Updated
Triggers when an object is updated in Salesforce. Only objects queryable by the user are shown.
-
Object Deleted
Triggers when an object is deleted in Salesforce. Only objects queryable by the user are shown.
-
Create an Object
Creates an object in Salesforce. Custom fields and custom objects are also supported. Only object types creatable by the user are shown.
-
Update an Object
Updates a Salesforce object. Custom fields and custom objects are also supported. Only object types updatable by the user are shown.
-
Delete an Object
Deletes a Salesforce object. Custom objects are also supported. Only object types deletable by the user are shown.
-
Get an Object by ID
Get a Salesforce object by ID
-
Query Single Object
Get a single Salesforce object by SOQL query.
-
Upsert Object
Updates or Inserts object based on an external ID. If the External ID is present in Salesforce then the object is updated, otherwise it is created.
-
Fetch a Linked Object
Fetches a linked object.
-
Look Up Object
-
Generic SOQL Query
ADVANCED: Gives you a full freedom to execute an SOQL query. Each result contains a field named
attributes
which contains the raw attributes as returned buy Salesforce Rest API.The pipe is a low-level interface to Salesforce API. It does not provide schema info, so you will have to run it once to see what results look like. HINT you can add LIMIT 1 to your query, to fetch just one result while testing. -
Search Objects (SOQL)
Search for objects in Salesforce using Salesforce Object Query Language (SOQL). Only object types queryable by the user are shown. The query sent to Salesforce is
SELECT <ALL FIELDS> FROM <Object Type> WHERE <Query>
. -
Search Objects (SOSL)
Search for objects in Salesforce using Salesforce Object Search Language (SOSL). Only object types searchable by the user are shown. Always searches in all fields. The query sent to Salesforce is
FIND {<Query>} RETURNING <Object Type>(<ALL FIELDS>)
. If the Search Type issosl
you can use queries likemap* AND NOT paper
. For thetext
option input is automatically escaped so that you don’t have to worry about escaping special SOSL characters, like{
and*
.
Messages
-
- To
- —
- To Addresses
- —
- Cc
- —
- Cc Addresses
- —
- Bcc
- —
- Bcc Addresses
- —
- Sender
- —
- Sender Address
- —
- Subject
- —
- Body
- —
- Body HTML
- —
-
New Inbound Email
-
Send an Email
Sends a new email message.