--- layout: m1x_soap title: Product Link List ---
Aliases:
Allows you to retrieve the list of linked products for a specific product.
Aliases:
Arguments:
| Type | Name | Description |
|---|---|---|
| string | sessionId |
Session ID |
| string | type |
Type of the link (cross_sell, up_sell, related, or grouped) |
| string | product\productId |
Product ID or SKU |
| string | identifierType | Defines whether the product ID or SKU is passed in the 'product' parameter |
Returns:
| Type | Name | Description |
|---|---|---|
| array | result | Array of catalogProductLinkEntity |
The catalogProductLinkEntity content is as follows:
| Type | Name | Description |
|---|---|---|
| string | product_id |
Product ID |
| string |
type |
Type of the link |
| string |
set |
Product attribute set |
| string |
sku |
Product SKU |
| string |
position |
Position |
| string |
qty |
Quantity |
$client = new SoapClient('http://magentohost/api/soap/?wsdl');
// If somestuff requires api authentification,
// 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);
$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);
$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);
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)