phpAx / Shopify / Updating a customers postal code
        
        Back to Collection Items
        <?php
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new COM("Chilkat.Http");
$http->SetRequestHeader('Content','<>');
$resp = new COM("Chilkat.HttpResponse");
$success = $http->HttpNoBody('PUT','httpsDefaultParameterValue:DefaultParameterValue@DefaultParameterValue.myshopify.com/admin/customers/3989659651/addresses/5484465742.json',$resp);
if ($success == 0) {
    print $http->LastErrorText . "\n";
    exit;
}
print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";
?>
        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": [
  ]
}