{ "title": "Create Opportunity Example", "description": "Example request and response for creating a Salesforce Opportunity record", "operation": "createSobjectRecord", "method": "POST", "path": "/sobjects/Opportunity", "request": { "headers": { "Authorization": "Bearer {access_token}", "Content-Type": "application/json" }, "body": { "Name": "Acme Corp - Enterprise License Q4 2024", "AccountId": "001xx000003GYkJAAW", "Amount": 125000, "CloseDate": "2024-12-31", "StageName": "Qualification", "Type": "New Business", "LeadSource": "Web", "Description": "Potential enterprise license deal for Q4 2024 close" } }, "response": { "statusCode": 201, "headers": { "Content-Type": "application/json" }, "body": { "id": "006xx000003GYkJAAW", "success": true, "errors": [] } } }