-
Notifications
You must be signed in to change notification settings - Fork 4
Vouchers Search
Brad Ploeger edited this page Apr 3, 2019
·
1 revision
Search vouchers in your account
$rezdyApi->vouchers->search($request);- none
- Rezdy\Requests\SimpleSearch: $request
use Rezdy\RezdyAPI;
// Initialize the API
$rezdyAPI = new RezdyAPI('your api key');
$searchParams = [
'search' => '123',
'limit' => 25,
'offset' => 0,
$search = new SimpleSearch($searchParams);
// Send the request to the API
$response = $rezdyApi->vouchers->search($search);
// View the response
echo $response;Rezdy API V1 PHP Wrapper