-
Notifications
You must be signed in to change notification settings - Fork 4
Vouchers Get
Brad Ploeger edited this page Apr 3, 2019
·
1 revision
Load an existing voucher by Voucher Code
$rezdyApi->vouchers->get($voucherCode);- string: $voucherCode
- none
use Rezdy\RezdyAPI;
// Initialize the API
$rezdyAPI = new RezdyAPI('your api key');
$voucherCode = "8512-1521";
// Send the request to the API
$response = $rezdyApi->vouchers->get($voucherCode);
// View the response
echo $response;Rezdy API V1 PHP Wrapper