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