APEX REST Web Services Example To make your Apex class available as a REST web service is straightforward. For example, this sample Apex REST class uses one method. The getRecord method is a custom REST API call. It’s annotated with @HttpGet and is invoked for a GET request. The class is annotated with @RestResource(urlMapping=’/Account/*’). The base endpoint for Apex REST […]