Chilkat Online Tools

Go / Shopify / Get a single customer by ID

Back to Collection Items

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

    http := chilkat.NewHttp()
    var success bool

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

    sbResponseBody := chilkat.NewStringBuilder()
    success = http.QuickGetSb("httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/customers/3989659651.json",sbResponseBody)
    if success == false {
        fmt.Println(http.LastErrorText())
        http.DisposeHttp()
        sbResponseBody.DisposeStringBuilder()
        return
    }

    fmt.Println("Response status code = ", http.LastStatus())
    fmt.Println(*sbResponseBody.GetAsString())

    http.DisposeHttp()
    sbResponseBody.DisposeStringBuilder()

Curl Command

curl -X GET
	-H "Content: <>"
httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/customers/3989659651.json

Postman Collection Item JSON

{
  "name": "Get a single customer by ID",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/customers/3989659651.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "customers",
        "3989659651.json"
      ]
    },
    "description": "Get a single customer by id."
  },
  "response": [
  ]
}