Object Name/Reference To (Relationship Name)
. Select one or more related objects, which will be join queried and included in the response from your Salesforce Organization. Please see the Limitations section below for use case advisories.YYYY-MM-DDThh:mm:ssZ
.YYYY-MM-DDThh:mm:ssZ
.Fetch page
: An object with key results that has an array as its value.Emit Individually
: Each object fill the entire message.Size of Polling Page
flow will find largest update date and use it as Start Time
for next iterations, results with this date will be excluded from that iteration and include in the next one.Size of Polling Page
.Size of Polling Page
(look at previous point).base64
, e.g. Documents, Attachments, etc) is selected on Include linked objects, an error will be thrown: MALFORMED_QUERY: Binary fields cannot be selected in join queries. Instead of querying objects with binary fields as linked objects (such as children Attachments), try querying them directly.
There is also a limit to the number of linked objects that you can query at once - beyond two or three, depending on the number of fields in the linked objects, Salesforce could potentially return a Status Code 431 or 414 error, meaning the query is too long. Finally, due to a bug with multiselect dropdowns, it is recommended to deselect all of the elements in this field before you change your selection in the Object dropdown list.Continuously runs the same SOQL Query and emits results according to Output method
configuration field.
Use the Salesforce Object Query Language (SOQL) to search your organization’s Salesforce data for specific information.
SOQL is similar to the SELECT statement in the widely used Structured Query Language (SQL) but is designed specifically for Salesforce data.
This trigger allows you to interact with your data using SOQL.
SOQL Query - Input field for your SOQL Query.
Output method - dropdown list with options: Emit all
- all found records will be emitted in one array records
, and Emit individually
- each found object will be emitted individual. Optional field, defaults to: Emit individually
.
Don’t emit on empty results - checkbox, optional. If selected, component will not produce empty messages when result is empty.
SELECT id, Name, Phone, Birthdate, Likes_Ice_Cream
FROM Contract
WHERE Phone != null
LIMIT 5
Please Note: Max possible fetch size is 2000 objects per execution.
This trigger will subscribe for any platform Event using Salesforce streaming API:
Please note: REALTIME FLOWS ONLY
My platform event
Setup --> Integrations --> Platform Events --> New Platform Event
You can find more detail information in the Platform Events Intro Documentation.
This trigger will subscribe for any platform Event using Pub/Sub API.
My platform event
.api.pubsub.salesforce.com:7443
. Details about Pub/Sub API Endpoints can be found here.replayId
of this message which can be used to retrieve records that were created after (using it as Start from Replay Id
in configuration).Retrieve new sample from Salesforce v2
you need to trigger an event on Salesforce side or provide a sample manually.Click here to learn more about the elastic.io iPaaS