Skip to content

RezdyConnect Get

Brad Ploeger edited this page Apr 3, 2019 · 2 revisions

Services \ RezdyConnect \ Get

Purpose

Load an existing product's RezdyConnect settings.

Basic Usage:

$rezdyApi->rezdyConnect->get($productCode);

Required Parameters

  • string: $productCode

Optional Parameters

  • none

Returns

Throws

Code Example

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;

Clone this wiki locally