A little while ago, Paul McGurn blogged how to create a public (SOAP-based) web service via a Force.com Site. As Paul explains, you add your web service class to the Enabled Apex Classes in the Site’s Public Access Settings. You’ll also need to add the appropriate object and field-level permissions for any data you will be exposing; remembering, of course, that this web service will be accessible without any authentication!

As I was setting up a WebHook the other day, I realized that the same principle applies to Apex REST Methods – add the class and any relevant objects/fields to your Site’s Public Access Settings, and you can access the REST methods via the Site URL. Let’s code up a simple example; here’s my Apex class:

I’m not manipulating any standard or custom objects, so I just need to add MyService to the Enabled Apex Classes in the Site’s Public Access Settings:

The public URL for an Apex REST method has the format {Site_URL}/services/apexrest{URL_mapping}. In my example, this will be https://patdevorg-developer-edition.na9.force.com/services/apexrest/myservice. I can easily test my service from the command line with cURL:

Bonus tip: Wondering why those double quotes are there, and how to get rid of them? Well, by default, Apex REST Methods return JSON-formatted data, and a JSON-formatted String has quotes. You can get more control over your method’s output via RestResponse‘s responseBody property:

Calling the service with cURL:

As you can see, it’s easy to set up publicly accessible endpoints in your org. Just remember the security implications, and consider carefully what objects and fields you expose.

Get the latest Salesforce Developer blog posts and podcast episodes via Slack or RSS.

Add to Slack Subscribe to RSS