Python / Shopify / Get all metafields that belong to a product
        
        Back to Collection Items
        import sys
import chilkat2
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
http = chilkat2.Http()
http.SetRequestHeader("Content","<>")
sbResponseBody = chilkat2.StringBuilder()
success = http.QuickGetSb("httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/products/7990943555/metafields.json",sbResponseBody)
if (success == False):
    print(http.LastErrorText)
    sys.exit()
print("Response status code = " + str(http.LastStatus))
print(sbResponseBody.GetAsString())
        Curl Command
        curl -X GET
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/products/7990943555/metafields.json
        Postman Collection Item JSON
        {
  "name": "Get all metafields that belong to a product",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/products/7990943555/metafields.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "products",
        "7990943555",
        "metafields.json"
      ]
    },
    "description": "Get all metafields that belong to a product."
  },
  "response": [
  ]
}