6.3Real Salesforce Choice example
Suppose upstream sends:
{
"customerId": "C001",
"operation": "DELETE"
}
Business rule:
CREATE / UPDATE
→ upsert Salesforce
DELETE
→ mark Account inactive
Not actually delete.
So:
Choice
operation == "DELETE"
↓
Update Status__c = "Inactive"
otherwise
↓
Upsert Account
This is exactly where Choice belongs.