• 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

  • Please note that the team will not be available on 7th September 2024, due to a public holiday in India.

    During this period, support assistance may experience some delays.

  • 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 Traverse Within the JSON to Map a Response Key.

This documentation guides you on how to traverse in JSON to map a response key with ==> notation.

When setting up an application in Pabbly Connect, you might need to extract specific information from a JSON response. The ==> notation helps you do that. It's similar to giving directions to find what you need in a JSON file.

So, for example, if you want to find a value called "hash" that's tucked away inside a "secret" within a "webhook", you'd write {{webhook==>secret==>hash}}. This approach streamlines the process of navigating through intricate JSON structures to access specific data points.


Example of JSON Response-
Code:
{
  "id": "4b67ac88-e506-4a29-9d42-26e504e3435e",
  "webhook": {
    "id": "4b67ac88-e506-4a29-9d42-26e504e3435e",
    "userid": 183,
    "health": [
      {
        "status": "active",
        "fail_count": 0
      }
    ],
    "secret": {
      "hash": "O94IM25S7PXBPYTMNXLLET230SRP0S89COR7B1YOJ2ZIE8WQNK5UUKEF26W0Z5GA"
    }
  }
}

This is how you can visualize the JSON structure to navigate within it and map a response key from here.

1715429188681.png


Examples How to Set Response/Parameter Key -
  • To fetch the "id" key from JSON, set to {{id}}.
  • To fetch the "id" inside the "webhook" key from JSON, set to {{webhook==>id}}.
  • To fetch the "hash" inside the "secret" key within the "webhook" key from JSON, set to {{webhook==>secret==>hash}}
  • To fetch the "status" inside the "health" key which is an array within the "webhook" key from JSON, set to {{webhook==>health==>0==>status}}.
 
Last edited by a moderator:
Top