Skip to content

Product_Delete

Jacob McConnell edited this page Jun 10, 2014 · 2 revisions

The Twocheckout_Product class provides methods to create, retrieve, update and delete products and will return an Array or JSON response depending on your format specification.

##Method

###delete

Use to delete an existing product.

####Arguments

  • array Array
  • Array containing delete_product parameters in key => value pairs. Parameters -> API Delete Product

####Returns

Returns an Array or JSON depending on your format specification.

####Example Usage:

Twocheckout::username('APIuser1817037');
Twocheckout::password('APIpass1817037');

$args = array(
    'product_id' => 4838125968
);

$result = Twocheckout_Product::delete($args);

####Example Response:

Array
(
    [response_code] => OK
    [response_message] => Product successfully deleted.
)

Clone this wiki locally