Good day Developers in the house. I need help. I have a json string that i have gotten from API in Angular and console log to see it. I want to get a particular data from the json file and store in a variable because i need to query the data again. Below is how my Json data look like.
{
  "done": true,
  "record_id": "5fc0a7ac88d2f8534f8e59d8",
  "customer_id": "5fa1541f6bd09b290f736608",
  "balance": {
    "clientId": "qh8RKp9BGhmKCn8ZAAED",
    "status": true,
    "balance_callback": "https://webhook.site/92b09e29-f08e-4472-b7e8-5875155360d67",
    "data": {
      "formatted": [
        {
          "available_balance": 31500,
          "ledger_balance": 32000,
          "ref": "saving-account",
          "status": "active",
          "account": "5fa9e536f6b7bb837cb22byu",
          "connected": true
        },
        {
          "available_balance": 11200,
          "ledger_balance": 11200,
          "ref": "current-account",
          "status": "active",
          "account": "5fa9e535f6b7bb837cb22buy",
          "connected": false
        },
        {
          "available_balance": 2000,
          "ledger_balance": 2000,
          "ref": "current-account",
          "status": "active",
          "account": "5fa9e536f6b7bb837cb22bty",
          "connected": false
        }
      ]
    }
  },
  "Post": {
    "callback_url": "https://webhook.site/92b09e29-f08e-4472-b7e8-5875155360d67"
  },
  "guarantors": [],
  "redirect_url": "",
  "launchAgain": true,
  "hideExit": "",
  "options": {},
  "directors": null,
  "auth": {
    "clientId": "qh8RKp9BGhmKCn8ZAythj",
    "status": true,
}
I want to get the callback-url under Post in the json file above.. Please any idea on how to do that with any javascript Method.
 
     
    