How to Make Set Value and Response Action in IP.

 

Create an Integration Procedure

  1. Start by creating a new Integration Procedure.
  2. Drag and drop the “Set Values” component on to the canvas within the Integration Procedure.
  3. Give a meaningful name to the “Set Values” component to identify its purpose.

Create Variables:

  1. Navigate to the Element Name section within the “Set Values” component.
  2. 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):

  1. Within your Integration Procedure, drag and drop another “Set Values” component onto the canvas.
  2. Name this new “Set Values” component as “Merge_Name” to reflect its purpose.

Configure Merging of FullName:

  1. 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):

  1. Within your Integration Procedure, drag and drop another “Set Values” component onto the canvas.
  2. Name this new “Set Values” component as “Merge_Name_Using_Array_Element” to reflect its purpose.

Configure Merging using Array Element:

  1. 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%

Configure Response Action with Additional Output Transformation:

  1. After creating the “Merge_Name_Using_Array_Element” Set Values component, drag and drop a “Response Action” onto the canvas within your Integration Procedure.
  2. Click on the “Additional Output Transformation” section within the Response Action configuration.
  3. In the “Value” field, specify the value as:
    • =%Merge_Name_Using_Array_Element:FullName%

On the Preview Tab:

  1. Navigate to the Preview Tab within your development environment or interface.
  2. Pass input parameters in JSON data for testing purposes.

					{
    "Name": [
        {
            "FirstName": "Jhon",
            "LastName": "Mark"
        },
        {
            "FirstName": "Gate",
            "LastName": "Mark"
        }
    ]
}
				

After Clicking on EXECUTE:

  1. After configuring the input parameters on the Preview Tab:
  2. Click on the “EXECUTE” button to initiate the execution of your Integration Procedure.

“Great! We have successfully found the response.”

Scroll to Top