-
Notifications
You must be signed in to change notification settings - Fork 4
RezdyConnect Remove
Brad Ploeger edited this page Apr 3, 2019
·
1 revision
Services \ RezdyConnect \ Remove
Deconfigure a product from RezdyConnect.
$rezdyApi->rezdyConnect->remove($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->remove($productCode);
// View the response
echo $response;Rezdy API V1 PHP Wrapper