function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
textualtextual 

Creating an apex endpoint

Im about 90% certain, but wanted to verify, i can create an endpoint on salesforce, right? so rather than making our team use the rest api when updating multiple objects, they could send one big block of data to a single web service and i can parse and update on the salesforce side. are there any good examples of this?
Shashikant SharmaShashikant Sharma
Yes you could create a Apex Rest Service

See this : https://developer.salesforce.com/page/Creating_REST_APIs_using_Apex_REST

Alternatively you could create soap webservice and then use wsdl of that class to use the API method from callout from other applications.