You are here:
digest Transformation
The digest transformation extracts synced connected data in a dataflow. Use it to extract data synced from an external Salesforce org, or data synced through an external connection. Use the sfdcDigest transformation to extract from your local Salesforce org.
Let’s say you extract opportunity data from your company’s org in Arizona using a Salesforce external connection. To use this data in your dataflow, add a digest node specifying the connection name, object, and fields.
"Extract Arizona Opportunities": {
"action": "digest",
"parameters": {
"connectionName": "Arizona_Sales",
"object": "Opportunity",
"fields": [
{"name": "CloseDate"},
{"name": "Amount"},
{"name": "StageName"},
{"name": "Name"}
],
}
},
- digest Parameters
When you define a digest transformation, you set the action attribute todigestand specify the parameters.

