diff options
author | Filipp Lepalaan <filipp@mac.com> | 2016-03-31 10:01:51 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2016-03-31 10:01:51 +0300 |
commit | 68c2b78f93af5a4f950d54a009951725cc3889cf (patch) | |
tree | b47632a1f12057c6941626434e9fe706ed425d38 /examples/warranty_status.php | |
parent | 1144dc5939c994388acaa5522f1e8ba2ce82477e (diff) | |
parent | f405dc504b62e5b8157429fe36a1f96d83c97b61 (diff) | |
download | gsxlib-68c2b78f93af5a4f950d54a009951725cc3889cf.tar.gz gsxlib-68c2b78f93af5a4f950d54a009951725cc3889cf.tar.bz2 gsxlib-68c2b78f93af5a4f950d54a009951725cc3889cf.zip |
warrantyStatus method updated for May upgrade
Diffstat (limited to 'examples/warranty_status.php')
-rw-r--r-- | examples/warranty_status.php | 54 |
1 files changed, 54 insertions, 0 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> |