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

Module: Mage_Catalog

Aliases:

  • product_link
Method:
  • catalog_product_link.list (SOAP V1)
  • catalogProductLinkList (SOAP V2)

Allows you to retrieve the list of linked products for a specific product.

Aliases:

  • product_link.list

Arguments:

TypeNameDescription
stringsessionIdSession ID
stringtypeType of the link (cross_sell, up_sell, related, or grouped)
stringproduct\productIdProduct ID or SKU
stringidentifierTypeDefines whether the product ID or SKU is passed in the ‘product’ parameter

Returns:

TypeNameDescription
arrayresultArray of catalogProductLinkEntity

The catalogProductLinkEntity content is as follows:

TypeNameDescription
stringproduct_idProduct ID
stringtypeType of the link
stringsetProduct attribute set
stringskuProduct SKU
stringpositionPosition
stringqtyQuantity

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_link.list', array('type' => 'related', 'product' => '1'));
var_dump ($result);

// If you don't need the session anymore
//$client->endSession($session);
Request Example SOAP V2
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl'); // TODO : change url
$sessionId = $proxy->login('apiUser', 'apiKey'); // TODO : change login and pwd if necessary

$result = $proxy->catalogProductLinkList($sessionId, 'related', '1');
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'));

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

var_dump($result->result);
Response Example SOAP V1
array
  0 =>
    array
      'product_id' => string '3' (length=1)
      'type' => string 'simple' (length=6)
      'set' => string '4' (length=1)
      'sku' => string 'canonxt' (length=7)
      'position' => string '1' (length=1)
  1 =>
    array
      'product_id' => string '4' (length=1)
      'type' => string 'simple' (length=6)
      'set' => string '4' (length=1)
      'sku' => string 'canon_powershot' (length=15)
      'position' => string '0' (length=1)