-
Notifications
You must be signed in to change notification settings - Fork 4
Resources List
Brad Ploeger edited this page Apr 4, 2019
·
2 revisions
Retrieve all supplier resources.
NOTE: Paging using limit and offset is applied to the result list.
$rezdyApi->resources->list($request);- none
- Rezdy\Requests\SimpleSearch: $request
use Rezdy\RezdyAPI;
use Rezdy\SimpleSearch;
// Initialize the API
$rezdyAPI = new RezdyAPI('your api key');
$searchParams = [
'limit' = 10,
'offset' = 2 ];
$search = new SimpleSearch($searchParams);
// Send the request to the API
$response = $rezdyAPI->resources->list($search);
// View the response
echo $response;Rezdy API V1 PHP Wrapper