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"
}
]
}