-
Notifications
You must be signed in to change notification settings - Fork 4
Products Get
Brad Ploeger edited this page Apr 4, 2019
·
3 revisions
Load an existing product by Product Code
$rezdyApi->products->get($productCode);- string: $productCode
- none
use Rezdy\RezdyAPI;
// Initialize the API
$rezdyAPI = new RezdyAPI('your api key');
$productCode = 'P12345';
// Send the Product request to the API
$response = $rezdyAPI->products->get($productCode);
// View the response
echo $response;Rezdy API V1 PHP Wrapper