• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

  • Important: Any reported problems and issues with your integration will be reported to you and we will encourage the app developers help to resolve those integration issues.

How to Configure Request Body JSON of an Action with Dynamic/Custom Fields

Status
Not open for further replies.
Custom fields of an application are the dynamic fields configured by the app users in their app dashboard. Many applications like MailChimp, Mailerlite, Pabbly Email Marketing etc. allows user to manage their contacts, lists, subscribers etc based on custom fields.

So, it is important to make the app integration compatible with custom fields.

Here are the steps to be followed for configuring the action's request body JSON with Custom fields.

  • Identifying the request body JSON structure.

    Here you need to identify the JSON structure that may support the custom fields. It may consist of an array of custom fields JSON object or a simple JSON object as shown in the below example:

    Example 1: Custom Fields as a JSON object

    JSON:
    {
    "email": "[email protected]",
    "name": "John",
    "fields": {
      "company": "MailerLite",
      "address": "B 20, White Street, Banglore",
      "phone": "+14568455487",
      "zip": 4566685
    }
    }

    In this case, you can see the "fields" is the JSON object of custom fields Key-Value pair in the request body. So, the request body of the action in Pabbly Connect integration should include the following variables to generate the dynamic custom fields in the frontend.

    JSON:
    {
        "email": "{{email}}",
        "name": "{{name}}",
        "fields": {
            "pabbly_custom_fields": {
                "{{pabbly_custom_key}}": "{{pabbly_custom_value}}"
            }
        }
    }

    Here is what the final action configuration will look like:

    1635835970689.png


    Example 2: Custom Fields as an array of JSON objects

    JSON:
    {
       "contact": {
      "email": "[email protected]",
      "firstName": "John",
      "lastName": "Doe",
      "phone": "7223224241",
      "fieldValues": [
       {
        "field": "1",
        "value": "The Value for First Field"
       },
       {
        "field": "6",
        "value": "2008-01-20"
       }
      ]
    }
    }

    In this case, you can see the "fieldValues" is the array of JSON objects of the custom fields in the request body. So, the request body of the action in Pabbly Connect integration should include the following variables to generate the dynamic custom fields in the frontend.

    JSON:
    {
           "contact": {
            "email": "{{email}}",
            "firstName": "{{firstName}}",
            "lastName": "{{lastName}}",
            "phone": "{{phone}}",
            "fieldValues": {
                "pabbly_custom_fields": [
                    {
                        "field": "{{pabbly_custom_key}}",
                        "value": "{{pabbly_custom_value}}"
                    }
                ]
            }
        }
    }

    Here is what the final action configuration will look like:

    1635834995239.png


  • Create an inbuilt action to list the custom fields under your app integration.

    Create an inbuilt action with Dropdown & Custom Fields (Default) type to list the custom fields as shown below:

    1635858206856.png


    Note: In the above example, only the first record of the JSON object retrieved from List Custom Fields inbuilt action event is displayed and that will be used to configure the custom fields key and value in the settings. Pabbly Connect automatically processes the other fields on run time.

    Now, Include and configure the Inbuilt action response in the final action event's pabbly_custom_fields parameter as shown below:

    1635856705060.png


    By clicking the setting button below configuration panel will be shown where you can map the pabbly_custom_key and pabbly_custom_value under the Dynamic Dropdown option:

    1635858015191.png


    Pabbly Connect process the other fields and the final JSON request with custom fields will look like:

    JSON:
    {
    "email": "[email protected]",
      "name": "John Doe",
      "fields": {
        "email": "[email protected]",
        "name": "John",
        "last_name": "Doe",
        "zip": "99901",
        "mobile_number": "8889888988",
        "business_address": "912 Park Ave, Ketchikan, Alaska, USA"
      }
    }

    Frontend view of all the custom fields in the action will be look like:

    1635858797871.png
Watch this video:


In this way, you can configure custom fields in your action which will dynamically populate the fields in your app's action at the frontend.
 

Attachments

  • 1635837924423.png
    1635837924423.png
    54.4 KB · Views: 201
  • 1635838145977.png
    1635838145977.png
    76.9 KB · Views: 187
  • 1635838404171.png
    1635838404171.png
    55.6 KB · Views: 205
Last edited by a moderator:
Status
Not open for further replies.
Top