Single Call Security iControl LX REST API Lab > Class 1 - Single Call Security iControl LX REST API Lab > Module 3 - Understanding iControl LX Extensions Source | Edit on
Lab 3.3 - Interacting with 3rd Party Systems¶
iControl LX can be used to communicate with external 3rd party systems/APIs via REST.
To achieve this, one must understand how to create REST API calls within an iControl LX Extension.
There are two communication methods supported by the iControl LX Framework:
restOperation()
- Native Node.js HTTP requests (recommended by F5)
Task 1 - Using restOperation()¶
While you can use restOperation() to create REST transactions (using setURI(), setBody(), etc.) to 3rd party systems, F5 recommends that you use the built-in Node.js functionality.
Task 2 - Creating a REST call using Native Node.js HTTP Requests¶
In this example we will modify the HelloWorld
extension to retrieve its
operating state from a JSON file in GitHub:
With these modifications, anytime an HTTP GET is sent to
/mgmt/ilxe_lab/hello_world
it will reply with the JSON blob that was
retrieved from GitHub when the worker was initially loaded.
Also, note the change in onGet()
to restOperation.setBody()
Note
If you already have the call to another system working in the Postman REST client, you can click the Generate Code button to obtain the Node.js code.