BookatlasTwo-Day MuleSoft → Salesforce Bootcamp
66 / 81 · Module 17 — Interview System-Design Scenarios · filtered: interview← prev⊞ allnext →

Scenario 2 — Account and Contacts

Prompt

“A customer request contains an Account and multiple Contacts. How would you load that into Salesforce?”

Input:

{
  "customerId": "C001",
  "companyName": "Acme",
  "contacts": [
    {
      "contactId": "P001",
      "firstName": "John",
      "lastName": "Smith"
    },
    {
      "contactId": "P002",
      "firstName": "Sarah",
      "lastName": "Jones"
    }
  ]
}