Skip to main content

Querying data from Salesforce

info

SQL support in RAW is currently in Closed Beta. Contact us for early access.

info

This document is a work-in-progress. Check back soon!

The Salesforce CRM is a tool for sales representatives and customer relationship managers. Among its data, there are detailed information about customers contacts.

Using the SQL-based Salesforce connector, RAW users can build APIs over Salesforce easily.

For instance, once a Salesforce credential is added, retrieving contacts with email address ending in example.com, can be implemented by this query:

SELECT * FROM salesforce01.salesforce_contact WHERE email LIKE '%example.com';

A fragment of the results is this: Example 1 - Results