diff options
-rw-r--r-- | examples/warranty_status.php | 54 | ||||
-rw-r--r-- | gsxlib.php | 5 |
2 files changed, 57 insertions, 2 deletions
diff --git a/examples/warranty_status.php b/examples/warranty_status.php new file mode 100644 index 0000000..6ae77ed --- /dev/null +++ b/examples/warranty_status.php @@ -0,0 +1,54 @@ +<?php + + /** + * This example mimics the serial number lookup for WarrantyStatus in GSX. + * Updated to send shipTo as required by the May 2016 release of GSX. + */ + + require 'gsxlib/gsxlib.php'; + + $sold_to = ''; + $ship_to = ''; + $username = ''; + $serialnumber = ''; + + $_ENV['GSX_CERT'] = '/path/to/certificate'; + $_ENV['GSX_KEYPASS'] = ''; + + try { + $gsx = GsxLib::getInstance($sold_to, $username); + $info = $gsx->warrantyStatus($serialnumber, $ship_to); + } catch (SoapFault $e) { + var_dump($e->faultstring); + die; + } + + ?> + + <table> + <tr> + <td><strong>Serial Number:</strong> <?= $info->serialNumber ?></td> + </tr> + <tr> + <td><strong>Warranty Status:</strong> <?= $info->warrantyStatus ?></td> + </tr> + <tr> + <td><strong>Days remaining:</strong> <?= $info->daysRemaining ?></td> + </tr> + <tr> + <td><strong>Estimated Purchase Date:</strong> <?= $info->estimatedPurchaseDate ?></td> + </tr> + <tr> + <td><strong>Purchase Country:</strong> <?= $info->purchaseCountry ?></td> + </tr> + <tr> + <td><strong>Product Description:</strong> <?= $info->productDescription ?></td> + </tr> + <tr> + <td><strong>Config Description:</strong> <?= $info->configDescription ?></td> + </tr> + <tr> + <td><strong>Activation Lock Status:</strong> <?= $info->activationLockStatus ?></td> + </tr> + + </table> @@ -478,11 +478,12 @@ class GsxLib /** * A shortcut for checking warranty status of device + * UPDATE: Now includes shipTo as per GSX update May 2016. */ - public function warrantyStatus($serialNumber) + public function warrantyStatus($serialNumber, $ship_to) { if(!is_array($serialNumber)) { - $serialNumber = array('serialNumber' => $serialNumber); + $serialNumber = array('serialNumber' => $serialNumber, 'shipTo' => $ship_to); } if(array_key_exists('alternateDeviceId', $serialNumber)) { |