How to get data from JSON?

i have json response from my api:
[

{

    "_id": {

        "$oid": "6229a3983ca50cf49f12b335"

    },

    "author": "cccc",

    "item_id": 3,

    "name": "Mendee"

}

]

i need author variable from this json. i mean “cccc”
how to do that by Blueprint?

I suppose that this is possible by importing it with the help of data tables, even though I never did this at runtime.

  • Define a structure type
  • Define a data table of the structure
  • Open the data table
  • Import the data to the table from json or csv

This might help: