This API proxy lets you do any operation on your Salesforce data but removes from you all the complexity of setting up and using the classic Salesforce API 🤩
No need to worry about setting up a connected app, rotating the security token, using bulk API or not, record formatting and more! Everything is managed for you 💆♀️
Insert up to 10 000 records with a single query. Simply supply the field values for each record you want to create. The response will contain one success confirmation per record meaning that, within the same request, each record can succeed or fail independently of each other. For each sent record, you will receive a detailed success or error message.
Get the content of up to 10 000 records. The number of sObjects returned matches the number of Ids passed in the request.
You can pass the optional fields parameter (list of field names that you want to be returned for each record). If the list of fields is not passed or is empty "fields":[], all fields are returned.
When a custom field is created, it is by default not visible to all profiles of the Salesforce organization. Users with different roles cannot see the newly created custom field.
The Field-Level Security needs to be modified after the Custom Field is created to enable other Salesforce profiles to see the field. Stacksync enables Custom Field Visibility for the following profiles:
System Administrator
Standard User
How to enable custom field for other profiles:
Go to Object Manager
Select the related Object
Select Fields & Relationships
Select the Custom Field
Select Field-Level Security & make it visible to the user groups you want
To make the custom Field visible in a layout:
Pass Through
Make a request to any Salesforce API by providing the URL, Request Method and the Request Body.
A request will be sent to the URL provided using the request method and request body. The request body can be empty.
curl -X [GET | POST | PUT | PATCH | DELETE]
https://eu.api-proxy.stacksync.com/v1/proxy/INSERT_REQUEST_URL_HERE \
-H "Authorization: Bearer your_api_proxy_service_token" \
-d 'Optional'
Example request:
Get Account Record
curl -X GET https://eu.api-proxy.stacksync.com/v1/proxy/https://MyDomainName.my.salesforce.com/services/data/v60.0/sobjects/Account/0017S00000GYoL3QAL \
-H "Authorization: Bearer your_api_proxy_service_token"
{"AccountNumber":"CD355118","AccountSource":null,"Active__c":"Yes","AnnualRevenue":5600000000.0,"BillingAddress": {"city":"New York","country":"test","geocodeAccuracy":null,"latitude":12.699999997,"longitude":12.8,"postalCode":"123","state":"NY","street":"1301 Avenue of the Americas \nNew York, NY 10019\nUSA" },"BillingCity":"New York","BillingCountry":"test","BillingGeocodeAccuracy":null,"BillingLatitude":12.699999997,"BillingLongitude":12.8,"BillingPostalCode":"123","BillingState":"NY","BillingStreet":"1301 Avenue of the Americas \nNew York, NY 10019\nUSA","CleanStatus":"Pending","CreatedById":"0057S000000WzYEQA0","CreatedDate":"2022-10-28T08:44:59.000+0000","CustomerPriority__c":"High","DandbCompanyId":null,"Description":"World's third largest oil and gas company.","DunsNumber":null,"Fax":"(212) 842-5501","Id":"0017S00000GYoL3QAL","Industry":"Energy","IsDeleted":false,"Jigsaw":null,"JigsawCompanyId":null,"LastActivityDate":null,"LastModifiedById":"0057S000000WzYEQA0","LastModifiedDate":"2024-01-25T11:28:30.000+0000","LastReferencedDate":"2024-02-12T01:58:55.000+0000","LastViewedDate":"2024-02-12T01:58:55.000+0000","MasterRecordId":null,"NaicsCode":null,"NaicsDesc":null,"Name":"Dickenson plc 2","NumberOfEmployees":145000,"NumberofLocations__c":34.0,"OperatingHoursId":null,"OwnerId":"0057S000000WzYEQA0","Ownership":"Public","ParentId":null,"Phone":"12","PhotoUrl":"/services/images/photo/0017S00000GYoL3QAL","Rating":"Hot","SLAExpirationDate__c":"2023-05-24","SLASerialNumber__c":"6654","SLA__c":"Platinum","ShippingAddress": {"city":"Paris","country":"France","geocodeAccuracy":null,"latitude":null,"longitude":null,"postalCode":"75251","state":"q","street":"1301 Avenue of the Americas \nNew York, NY 10019\nUSA" },"ShippingCity":"Paris","ShippingCountry":"France","ShippingGeocodeAccuracy":null,"ShippingLatitude":null,"ShippingLongitude":null,"ShippingPostalCode":"75251","ShippingState":"q","ShippingStreet":"1301 Avenue of the Americas \nNew York, NY 10019\nUSA","Sic":"4437","SicDesc":null,"Site":"resr","SystemModstamp":"2024-01-25T11:28:31.000+0000","TickerSymbol":"UOS","Tradestyle":null,"Type":"Customer - Direct","UpsellOpportunity__c":"Yes","Website":"http://www.uos.com","YearStarted":null,"aaaa__c":null,"api_token_test__c":null,"attributes": {"type":"Account","url":"/services/data/v60.0/sobjects/Account/0017S00000GYoL3QAL" },"encrypted_test__c":"XXXXXXXXXX","formula_test__c":5600145000.0,"geolocation_test__Latitude__s":12.0,"geolocation_test__Longitude__s":32.0,"geolocation_test__c": {"latitude":12.0,"longitude":32.0 },"multipick_list__c":"string;string;12.541","percent_test__c":5.0,"picklisttestnow__c":null,"randomfield__c":null,"rich_text_test__c":null,"rollup_test__c":720000.0,"test_custom_string5__c":"test","time_test__c":"00:15:00.000Z","url_test__c":"www.google.com"}