Salesforce · Example Payload

Salesforcecom Create Contact Example

CRMCloudSalesMarketingAutomationAIFortune 500

Salesforcecom Create Contact Example is an example object payload from Salesforce, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://na1.salesforce.com/services/data/v60.0/sobjects/Contact",
    "headers": {
      "Authorization": "Bearer 00D...",
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    "body": {
      "FirstName": "Jane",
      "LastName": "Smith",
      "Email": "jane.smith@acmetech.com",
      "Phone": "415-555-0100",
      "Title": "VP of Engineering",
      "AccountId": "001Dn000003GKkJIAW",
      "Department": "Engineering",
      "MailingCity": "San Francisco",
      "MailingState": "CA",
      "MailingCountry": "US"
    }
  },
  "response": {
    "status": 201,
    "headers": {
      "Content-Type": "application/json; charset=UTF-8"
    },
    "body": {
      "id": "003Dn000004TmnPIAS",
      "success": true,
      "errors": []
    }
  }
}