V8 custom scripting service add

From DreamFactory
Jump to: navigation, search
DreamFactoryTutorialsV8 custom scripting service add

You can create any number of custom scripting services and invoke them from the REST API. In this example we'll create a simple service that accepts two numbers as query parameters and returns their sum as the result. Since the script is a service, you can control access to it using roles. The script has whatever access to the API that is allowed by the role of the user calling the script. If allowed, the script can make additional REST API calls or cURL requests.

Create the service

Go to the services tab in the admin console and click Create. Set the Service Type to Custom Scripting Service. Set the service name to 'add'. Set the service labe to 'Add'. Go to the Config tab for the new service and set the Script Engine Type to V8js. Set the Content to contain the following code.

return n1 + n2;

Call the service

From any REST client, do a GET on /api/v2/add?n1=4&n2=5 and you should get the result of 9. A simple REST client can be found at <your_instance_url>/test_rest.html.