Retrieve product information by code
Overview
Extract information about a product from the Avangate system using its unique ID and the code of the pricing list to which it is assigned to.
Requirements
This method requires you to set a specific partner using setPartner.
Parameters
Parameter | Type/Description |
---|---|
sessionID | Required (string) |
Session identifier, which is the output of the Login method. An exception will be thrown if the values are incorrect. | |
productCode | Required (string) |
The unique product identifier from your system. | |
pricingListCode | Required (string) |
The unique identifier of the pricing list. |
Response
Parameter | Type/Description |
---|---|
ProductInfo | Complet object |
Complex object containing arrays of SimpleProduct and PriceOptions objects. |
Request
<?php require('PATH_TO_AUTH'); // Authentication example: https://knowledgecenter.avangate.com/Integration/Channel_Manager_API/SOAP/02Authentication require('PATH_TO_setPartner'); // setPartner example: https://knowledgecenter.avangate.com/Integration/Channel_Manager_API/SOAP/06Reference/Partner/00Set_partner $productCode = 'YOUR_PRODUCT_CODE'; $pricingListCode = 'YOUR_PRICING_LIST_CODE'; try { $ProductbyCODE= $client->getProductByCode ($sessionID, $productCode, $pricingListCode); } catch (SoapFault $e) { echo "ProductInfo: " . $e->getMessage(); exit; } var_dump ("ProductInfo", $ProductbyCODE);
Errors
Error | Description |
---|---|
INVALID_PARTNER |
No partner is set. |
INVALID_PRODUCT |
Provide a valid product ID. |
INVALID_PRICING_LIST_CODE |
Provide a valid pricing list code. |
PARTNER_PRICING_LISTS_NOT_FOUND |
There are no pricing lists with the provided code. |
PRODUCT_NOT_FOUND |
There is no product with this ID in the given pricing list. |