Chilkat Online Tools

Foxpro / Shopify / Get a single product metafield using the metafield's nested resource path

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loSbResponseBody

* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

loHttp = CreateObject('Chilkat_9_5_0.Http')

loHttp.SetRequestHeader("Content","<>")

loSbResponseBody = CreateObject('Chilkat_9_5_0.StringBuilder')
lnSuccess = loHttp.QuickGetSb("httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/products/7990943555/metafields/33058305934.json",loSbResponseBody)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loSbResponseBody
    CANCEL
ENDIF

? "Response status code = " + STR(loHttp.LastStatus)
? loSbResponseBody.GetAsString()

RELEASE loHttp
RELEASE loSbResponseBody

Curl Command

curl -X GET
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/products/7990943555/metafields/33058305934.json

Postman Collection Item JSON

{
  "name": "Get a single product metafield using the metafield's nested resource path",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/products/7990943555/metafields/33058305934.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "products",
        "7990943555",
        "metafields",
        "33058305934.json"
      ]
    },
    "description": "Get a single product metafield using the metafield's nested resource path."
  },
  "response": [
  ]
}