Chilkat Online Tools

autoit / Shopify / Updating a customers postal code

Back to Collection Items

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

$oHttp = ObjCreate("Chilkat_9_5_0.Http")
Local $bSuccess

$oHttp.SetRequestHeader "Content","<>"

Local $oResp = $oHttp.QuickRequest("PUT","httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/customers/3989659651/addresses/5484465742.json")
If ($oHttp.LastMethodSuccess = False) Then
    ConsoleWrite($oHttp.LastErrorText & @CRLF)
    Exit
EndIf

ConsoleWrite($oResp.StatusCode & @CRLF)
ConsoleWrite($oResp.BodyStr & @CRLF)

Curl Command

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

Postman Collection Item JSON

{
  "name": "Updating a customers postal code",
  "request": {
    "method": "PUT",
    "header": [
      {
        "key": "Content",
        "value": "<>"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/admin/customers/3989659651/addresses/5484465742.json",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "admin",
        "customers",
        "3989659651",
        "addresses",
        "5484465742.json"
      ]
    },
    "description": "Updating a customers postal code."
  },
  "response": [
  ]
}