Sample code for 30+ languages & platforms
PHP ActiveX

Akeneo: Delete Product

See more HTTP Misc Examples

Demonstrates how to delete product.

Chilkat PHP ActiveX Downloads

PHP ActiveX
<?php

$success = 0;

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

$http = new COM("Chilkat.Http");

// Use your previously obtained access token.
// See Get Akeneo Access Token
$http->AuthToken = 'access_token';

$http->SetUrlVar('productCode','123');

$respStr = $http->quickDeleteStr('http://pim.my-akeneo-site.com/api/rest/v1/products/{$productCode}');
if ($http->LastMethodSuccess != 1) {
    print $http->LastHeader . "\n";
    print $http->LastErrorText . "\n";
    exit;
}

print 'Response Status Code: ' . $http->LastStatus . "\n";
print 'Response Body: ' . $respStr . "\n";

?>