RenderDraw connects directly to Salesforce via OAuth 2.0. Read Opportunity data, pull CPQ pricing, write approved quotes back to Salesforce records, and trigger entire RFP and takeoff workflows automatically when a Salesforce event fires.
RenderDraw workflows can read from and write to the following Salesforce objects. Custom objects are also supported — any object visible to the authenticated user is accessible in workflow blocks.
Read opportunity name, stage, amount, close date, owner, account. Write updated stage, close probability, and custom fields. Trigger workflows on stage change.
Read quote lines, pricing, discounts, pricebook. Write approved quote line items from workbook output. Sync quote status back to workflow on customer acceptance.
Read order products and shipment details. Trigger post-order workflows (e.g., create a BOM extraction workflow when an order is confirmed).
Query product catalog, pricebook entries, and list prices. Map Salesforce product codes to workbook rows for automatic pricing in takeoff and RFP workflows.
Pull account industry, billing address, primary contact, and custom account fields. Include in RFP response headers and proposal templates automatically.
Any custom object visible to the connected user. Field selection uses the same SOQL-path syntax as standard objects. Supports lookup relationship fields.
RenderDraw's Salesforce CPQ integration reads pricing rules, product catalog, and pricebook entries at workflow runtime — ensuring every takeoff and RFP workflow uses the current approved pricing, not a stale export.
{
"type": "datasource",
"provider": "salesforce-production",
"action": "cpq_price_products",
"input": {
"opportunityId":
workflow.trigger.opportunityId,
"products":
workbook.rows.map(r => ({
productCode: r.product_code,
quantity: r.quantity
}))
},
"output": {
"mapTo": "workbook",
"columns": {
"unit_price": "$.unitPrice",
"discount_pct": "$.discountPct",
"total_price": "$.totalPrice"
}
}
}
RenderDraw connects to Salesforce B2B Commerce to trigger post-order workflows. When a B2B buyer places an order, RenderDraw can automatically initiate a CAD-to-quote workflow, generate a technical datasheet, or kick off a manufacturing BOM extraction.
Configure any of the following Salesforce events to automatically trigger a RenderDraw workflow. No polling required — events fire via Salesforce Platform Events within seconds of the change.
Trigger an RFP preparation workflow immediately when a new Opportunity is created. Pull the account's past quote history from your knowledgebase and pre-populate the workbook.
When an Opportunity moves to Proposal/Price Quote, trigger the full RFP automation workflow. When it moves to Closed Won, trigger a BOM handoff workflow to engineering.
When a Salesforce CPQ Quote is approved by the pricing manager, trigger the proposal generation and DocuSign delivery workflow. No manual handoff required.
OAuth 2.0 connection takes under 2 minutes. Start triggering workflows from Salesforce events immediately.