Sleekplan Logo
we run on Sleekplan

Shopify to Salesforce - Customers

Sync customer information (name, email, address) from Shopify to Salesforce. ```http GET /admin/api/2024-01/customers.json Host: your-store.myshopify.com X-Shopify-Access-Token: your-access-token ``` ```http POST /services/data/v57.0/sobjects/Contact Host: your-salesforce-instance.salesforce.com Authorization: Bearer your-access-token Content-Type: application/json { "FirstName": "John", "LastName": "Doe", "Email": "john.doe@example.com", "MailingStreet": "123 Main St", "MailingCity": "Anytown", "MailingState": "CA", "MailingPostalCode": "12345", "MailingCountry": "USA" } ``` - origin: [GitHub](https://github.com/FrendsPlatform/FrendsTemplates/issues/98)