Create an Integration Procedure
- Start by creating a new Integration Procedure.
- Drag and drop the “Set Values” component on to the canvas within the Integration Procedure.
- Give a meaningful name to the “Set Values” component to identify its purpose.
Create Variables:
- Navigate to the Element Name section within the “Set Values” component.
- Create multiple variables as needed. For example, create variables for “FirstName” and “LastName.”
/*! elementor – v3.18.0 – 20-12-2023 */
.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=”.svg”]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}
Create Another Set Values Component (Merge_Name):
- Within your Integration Procedure, drag and drop another “Set Values” component onto the canvas.
- Name this new “Set Values” component as “Merge_Name” to reflect its purpose.
Configure Merging of FullName:
- In the Element Name section, concatenate the FullName using the provided formula:
FullName
: Use this as the Element Name.- Given Value:
%Full_Name:firstName% + " " + %Full_Name:lastName%
Create Another Set Values Component (Merge_Name_Using_Array_Element):
- Within your Integration Procedure, drag and drop another “Set Values” component onto the canvas.
- Name this new “Set Values” component as “Merge_Name_Using_Array_Element” to reflect its purpose.
Configure Merging using Array Element:
- In the Element Name section, concatenate the merged name using the provided formula:
- Element Name:
Merge_Name
: Use this as the Element Name. - Given Value:
%Name|1:firstName% + " " + %Name|1:lastName%
- Element Name:
Configure Response Action with Additional Output Transformation:
- After creating the “Merge_Name_Using_Array_Element” Set Values component, drag and drop a “Response Action” onto the canvas within your Integration Procedure.
- Click on the “Additional Output Transformation” section within the Response Action configuration.
- In the “Value” field, specify the value as:
=%Merge_Name_Using_Array_Element:FullName%
On the Preview Tab:
- Navigate to the Preview Tab within your development environment or interface.
- Pass input parameters in JSON data for testing purposes.
{
"Name": [
{
"FirstName": "Jhon",
"LastName": "Mark"
},
{
"FirstName": "Gate",
"LastName": "Mark"
}
]
}
After Clicking on EXECUTE:
- After configuring the input parameters on the Preview Tab:
- Click on the “EXECUTE” button to initiate the execution of your Integration Procedure.
“Great! We have successfully found the response.”