m openmage

OpenMage LTS Developer Documentation

Product Tag Update

Edit this page on GitHub

Module: Tag API

Resource: catalog_product_tag

Aliases: product_tag

Method:

Allows you to update information about an existing product tag.

Arguments:

Type Name Description
string sessionId Session ID
string tagId ID of the tag to be updated
array data Array of catalogProductTagUpdateEntity
string store Store view code or ID (optional; required for WS-I compliance mode)

Return:

Type Description
boolean True if the product tag is updated

The catalogProductTagUpdateEntity content is as follows:

Type Name Description
string name
Tag name
string
status
Tag status. Can have the following values: -1 - Disabled, 0 - Pending, 1- Approved
string
base_popularity
Tag base popularity

Faults:

Fault Code Fault Message
101 Requested store does not exist.
104 Requested tag does not exist.
105 Provided data is invalid.
106 Error while saving tag. Details in error message.

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_tag.update', array('tagId' => '4', 'data' => array('name' => 'digital_1')));
var_dump ($result);
Request Example SOAP V2
$proxy = new SoapClient('http://magentohost/api/v2_soap/?wsdl'); 

$sessionId = $proxy->login('apiUser', 'apiKey'); 
 
$result = $proxy->catalogProductTagUpdate($sessionId, '1', array(
'name' => 'tag',
'status' => '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->catalogProductTagUpdate((object)array('sessionId' => $sessionId->result, 'tagId' => '1', 'store' => '0', 'data' => ((object)array(
'name' => 'tag',
'status' => '1',
'base_popularity' => null
))));
var_dump($result->result);