Definition
https://sandbox.bluesnap.com/services/2/catalog/products/:product-id
The Retrieve Product request enables you to retrieve details of an existing product in your account. The response includes the URLs of all linked SKUs.
Request Content
Enter the product-id
into the web service URL, in the format:
services/2/catalog/products/{product-id}
For example:
services/2/catalog/products/12345
Response Details
If successful, the response HTTP status code is 200 OK.
The response contains the retrieved product
resource (see product).
For details about possible errors, see: General Errors and Catalog Errors.
Examples
Request Example
curl -v -X GET https://sandbox.bluesnap.com/services/2/catalog/products/307634 \
-H 'Content-Type: application/xml' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ='
Response Example
<?xml version="1.0" encoding="UTF-8"?>
<product xmlns="http://ws.plimus.com">
<product-status>A</product-status>
<product-name>new product</product-name>
<product-short-description>This is the product short description</product-short-description>
<product-long-description>This is the product long description</product-long-description>
<product-info-url>http://www.myurl.com</product-info-url>
<product-merchant-descriptor>MERCHANTNAME123456</product-merchant-descriptor>
<product-support-email>[email protected]</product-support-email>
<product-skus>
<url>https://sandbox.bluesnap.com/services/2/catalog/skus/2180636</url>
</product-skus>
</product>
Back to Top