Foxpro / Shopify / Get all orders from a customer
        
        Back to Collection Items
        LOCAL loHttp
LOCAL lnSuccess
LOCAL loQueryParams
LOCAL loResp
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loHttp = CreateObject('Chilkat.Http')
loQueryParams = CreateObject('Chilkat.JsonObject')
loQueryParams.UpdateString("customer_id","<>")
loHttp.SetRequestHeader("Content","<>")
loResp = CreateObject('Chilkat.HttpResponse')
lnSuccess = loHttp.HttpParams("GET","httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/orders.json",loQueryParams,loResp)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loQueryParams
    RELEASE loResp
    CANCEL
ENDIF
? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loHttp
RELEASE loQueryParams
RELEASE loResp
        Curl Command
        curl -G -d "customer_id=%3C%3E"
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/orders.json
        Postman Collection Item JSON
        {
  "name": "Get all orders from a customer",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/orders.json?customer_id=<>",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "orders.json"
      ],
      "query": [
        {
          "key": "customer_id",
          "value": "<>"
        }
      ]
    },
    "description": "Get all orders from a customer."
  },
  "response": [
  ]
}