How to use complex json api in Datatable

How to use complex json api in Datatable

ayxaayxa Posts: 8Questions: 4Answers: 0
edited April 2020 in Free community support

How can I use this api in datatable?

{
  "Success": {
    "Meta": {
      "Id": "124578828",
      "Action": "ItemList",
      "Type": "Item"
    },
    "Body": {
      "TotalItems": 18,
      "Item": [
        {
          "Category": "Clothing",
          "ItemId": 12354,
          "Attributes": {
            "name": "Tee 1",
            "brand": "Brand 2",
            "material_type": "Cotton",
            "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore"
          },
          "Inventory": [
            {
              "Status": "active",
              "stock": 20,
              "Images": [
                "images/tee1_01.jpg",
                "images/tee1_02.jpg",
                "images/tee1_03.jpg",
                "",
                "",
                "",
                ""
              ],
              "Sku": "TEE-001233",
              "Url": "#",
              "price": 20,
              "Available": 12
            }
          ]
        }
      ]
    }
  }
}

Answers

  • kthorngrenkthorngren Posts: 21,170Questions: 26Answers: 4,922

    Please don't post duplicate questions. I answered your question in this thread.

    Kevin

This discussion has been closed.