Think. Build. Salesforce Solutions.

Salesforce Consulting Services across Salesforce Clouds & Across App Lifecycles

Blog

Integration with Salesforce Lightning External Services

Nowadays there is an API Integration in almost every org. The main purpose of integration with another service is to avoid reinventing the wheel. However, the development effort that is required to integrate with services is a complex and time-consuming venture. It reduces speed to market, but it also saps developer energy that is better spent in the front end, building the features that will really differentiate their app. With Lightning External Services, Salesforce makes this a lot easier and admin friendly.

With external services, you can connect to any service that you want to, invoke methods based on the external source via a flow all with the help of an easy-to-use wizard. Declarative tools are used to import API definitions right into Salesforce. Swagger or Interagent-based API definitions can be used to define an external service. Once the definitions have been imported, you can create lightning flows that will invoke actions generated from the API definition schema. Below is a depiction of how external services work.

salesforce external services

Here is what is happening in the above image:

Based on the provided API schema specification, a schema definition is created that describes the API. Once this is done, named credential is created to authenticate to the service’s endpoint using the URL provided by the external service provider. The endpoint is a URL that exposes the web services resources that External Services needs to interact with. Using the named credential and schema definition, external service is registered. External Services imports the definitions into your org and generates Apex actions, which are available immediately in Lightning Flow. While creating a flow, these Apex actions are added into the flow which sends a callout to the endpoint, and output is returned based on schema definition.

Schema Definition for your external service:

Schema specification is basically a contract that contains which type of inputs and outputs can be included in the API calls that are made from your external service. Endpoint information and authentication parameters for REST based API service are also included in specs. On the other hand, schema definition is human readable structured data.
Below is the schema definition of a pet store Swagger API.

Pet Store Schema

This schema declares various methods available in the API and the inputs, outputs included in this service. For example, the below snippet contains information about a GET method which is used to get all the inventories by status.

salesforce external services
We will be using the Pet Store Schema to illustrate the whole external service in this blog.

Registering an External Service:

Registering an external service involves the below two steps:

1. Named Credential: In order to register an External service, you need to create a named credential first. Named credential is created to authenticate to the service’s endpoint using the URL provided by the external service provider. Create a Named Credential as below in your org:

  • For Label, use SwaggerPet.
  • For URL, use https://petstore.swagger.io
  • Leave other fields as they are and click Save.

2. External Service: In your org, go to setup and search for external service in the quick find box. Create a new external Service and provide the below information in the fields:

  • For name, give ExternalSrv1
  • For Named credential, select SwaggerPet named credential created in the previous step
  • In the Service Schema Relative URL field paste v2/swagger.json

salesforce external services

salesforce external services

The generated actions are used in the flows. Below is the list of actions available in the pet store endpoint. We cover getOrderById action in this blog.

salesforce external services
External Services inflow:

Apex actions generated from external services can be used in lightning flows. When users run the flows, during runtime external services sends a callout to the service’s endpoint. Create a new flow and drag the Apex Action element. Select ExternalSrv1_getOrderById__Service
This action takes an Order id (any integer between 1 and 10) and returns details for that order like Order quantity, pet id, shipping date. Create variables for input and output data and configure the output variables to be stored in the variables as done below. Provide the default value of id such that 1<=id<=10. Set the input values and the output values by associating each with a flow variable. Make sure that the data type of input/output matches the input/output specs mentioned in the schema definition.
salesforce external services

salesforce external services

Connect the Apex Action with the start element.

salesforce external services

After completing all these steps, click on debug. Doing this will start the flow in debug mode. On the next screen select Show details of what’s executed and render flow in Lightning runtime and click Run.

salesforce external services
Above is the output of ExternalSrv1_getOrderById__Service for order Id = 2. Similarly, other Apex Actions can also be invoked using external services and flow without writing any code.

Summary:
External services are a great tool which along with point-and-click automation tools like flows and process builders can be used to integrate any API with Salesforce without writing any code. It reduces the development effort and is very much admin friendly making the process of integration making this process simpler and thus cheaper.

5 Comments

  1. Shravi Joshi November 11, 2019 at 1:49 pm - Reply

    Hi… These blogs offer a lot of information about Salesforce Integration. I am delighted with it. Thank you for sharing this wonderful post.

    • Mirketa Inc August 12, 2020 at 9:13 am - Reply

      Thanks, Shravi for your kind words.

  2. Kartik Sharma July 28, 2020 at 5:55 am - Reply

    Hi,

    I have gone through your blog and I am sure that it will definitely help others.

    • Mirketa Inc August 12, 2020 at 9:13 am - Reply

      Thanks for the feedback.

  3. Mark August 29, 2021 at 1:51 pm - Reply

    Hi – I completed Named Credential and External Service but am having an issue inserting the orderid input variable. Gettng – The data type of the resource you entered isn’t compatible. I used a variable and then a constant with a default of 2. Do you have a screenshot or an idea? I think just this step and I will have it. Thanks!

Leave A Comment Cancel reply