m openmage

OpenMage LTS Developer Documentation

Product Attribute Tier Price Update

Edit this page on GitHub

Module: Mage_Catalog

Resource: catalog_product_attribute_tier_price

Aliases:

Method:

Allows you to update the product tier prices.

Aliases:

Arguments:

Type Name Description
string sessionId Session ID
string product\productId
Product ID or SKU
array tierPrices
Array of catalogProductTierPriceEntity
string identifierType Defines whether the product ID or SKU is passed in the 'product' parameter

Returns:

Type Name Description
boolean\int result True (1) if the product tier price is updated

The catalogProductTierPriceEntity content is as follows:

Type Name Description
string customer_group_id
Customer group ID
string website
Website
int qty
Quantity of items to which the price will be applied
double price
Price that each item will cost

Examples

Request Example SOAP V1
$proxy = new SoapClient('http://magentohost/api/soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');

$productId = 1;
$tierPrices = array(
	array('customer_group_id' => '0', 'website' => '0', 'qty' => '50', 'price' => '9.90')
);

$result = $proxy->call(
	$sessionId,
	'product_attribute_tier_price.update',
	array(
		$productId,
		$tierPrices
	)
);

var_dump($result);
Request Example SOAP V2
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl');
$sessionId = $proxy->login('apiUser', 'apiKey');


$productId = 1;
$tierPrices = array(
	array('customer_group_id' => '0', 'website' => '0', 'qty' => '50', 'price' => '9.90')
);

$result = $proxy->catalogProductAttributeTierPriceUpdate(
	$sessionId,
	$productId,
	$tierPrices
);

var_dump($result);
Request Example SOAP V2 (WS-I Compliance Mode)
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl');
$sessionId = $proxy->login((object)array('username' => 'apiUser', 'apiKey' => 'apiKey'));


$productId = 1;
$tierPrices = array(
	array('customer_group_id' => '0', 'website' => '0', 'qty' => '50', 'price' => '9.90')
);

$result = $proxy->catalogProductAttributeTierPriceUpdate((object)array(
'sessionId' => $sessionId->result,
'productId' => $productId,
'tierPrices' => $tierPrices
));

var_dump($result->result);