Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Module: Mage_Catalog

Resource: catalog_product_attribute_tier_price

Aliases:

  • product_attribute_tier_price
  • product_tier_price
Method:
  • catalog_product_attribute_tier_price.info (SOAP V1)
  • catalogProductAttributeTierPriceInfo (SOAP V2)

Allows you to retrieve information about product tier prices.

Aliases:

  • product_attribute_tier_price.info
  • product_tier_price.info

Arguments:

TypeNameDescription
stringsessionIdSession ID
stringproduct\productIdProduct ID or SKU
stringidentifierTypeDefines whether the product ID or SKU is passed in the ‘product’ parameter

Returns:

TypeNameDescription
arrayresultArray of catalogProductTierPriceEntity

The catalogProductTierPriceEntity content is as follows:

TypeNameDescription
stringcustomer_group_idCustomer group ID
stringwebsiteWebsite
intqtyQuantity of items to which the price will be applied
doublepricePrice that each item will cost

Examples

Request Example SOAP V1
$client = new SoapClient('http://magentohost/api/soap/?wsdl');

// If somestuff requires API authentication,
// then get a session token
$session = $client->login('apiUser', 'apiKey');

$result = $client->call($session, 'catalog_product_attribute_tier_price.info', 'productId');
var_dump($result);
Request Example SOAP V2
$client = new SoapClient('http://magentohost/api/v2_soap/?wsdl');

// If somestuff requires API authentication,
// then get a session token
$session = $client->login('apiUser', 'apiKey');

$productId = 1;

$result = $client->catalogProductAttributeTierPriceInfo(
	$session,
	$productId
);
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'));

$result = $proxy->catalogProductAttributeTierPriceInfo((object)array('sessionId' => $sessionId->result, 'productId' => '1'));

var_dump($result->result);
Response Example SOAP V1
array
  0 =>
    array
      'customer_group_id' => string '1' (length=1)
      'website' => string 'all' (length=3)
      'qty' => string '2.0000' (length=6)
      'price' => string '129.9900' (length=8)
Response Example SOAP V2
array
  0 =>
    object(stdClass)[2]
      public 'customer_group_id' => string '0' (length=1)
      public 'website' => string 'all' (length=3)
      public 'qty' => int 5
      public 'price' => float 99
  1 =>
    object(stdClass)[3]
      public 'customer_group_id' => string '0' (length=1)
      public 'website' => string 'all' (length=3)
      public 'qty' => int 10
      public 'price' => float 98