Webshippy API EN
  • Introduction
  • Webshippy API Guide
    • Order API
    • Product API
    • Inventory Transfer API
    • External Inventory API
    • GetStock API
    • Get Brack History API
    • Create Bundle API
    • Marketplace Price Change API
    • Marketplace Transaction API
    • Shipping Mode API
    • Push API
    • Track Info API
  • External Inventory Feed
Powered by GitBook
On this page
  • Product wholesale price setting
  • Error messages that occur

Was this helpful?

  1. Webshippy API Guide

Marketplace Price Change API

PreviousCreate Bundle APINextMarketplace Transaction API

Last updated 3 years ago

Was this helpful?

Product wholesale price setting

Mező

Kötelező?

Leírás

apiKey

Igen

API key

sku

Igen

SKU of the product

wholesalePrice

Igen

Wholesale price of the product (net)

recommendedPrice

Igen

Recommended retail price of the product (net)

in case of XML:

Url:

Request:

<?xml version="1.0" encoding="utf-8"?>
<request>
<apiKey>api-key-comes-here</apiKey>
<products>
<sku>piros-polo</sku>
<wholesalePrice>1000</wholesalePrice>
<recommendedPrice>1700</recommendedPrice>
</products>
<products>
<sku>zold-sapka</sku>
<wholesalePrice>300</wholesalePrice>
<recommendedPrice>800</recommendedPrice>
</products>
</request>

Response (example):

<?xml version="1.0" encoding="utf-8"?>
<response>
  <status>success</status>
  <message>
    <elem>2 records were processed.</elem>
    <elem>2 updates successful.</elem>
  </message>
  <products>
    <elem>
      <sku>piros-polo</sku>
      <message>Update successful.</message>
    </elem>
    <elem>
      <sku>zold-sapka</sku>
      <message>Update successful.</message>
    </elem>
  </products>
</response>

in case of JSON:

Request:

{
 "apiKey": "api-key-comes-here",
 "products": [ 
 {
 "sku": "piros-polo",
 "wholesalePrice": "1000",
 "recommendedPrice": "1700" 
},
 {
 "sku": "zold-sapka",
 "wholesalePrice": "300",
 "recommendedPrice": "800"
  } ]
}

Response (example):

{
    "status": "success",
    "message": [
        "2 records were processed.",
        "2 updates successful."
    ],
    "products": [
        {
            "sku": "piros-polo",
            "message": "Update successful."
        },
        {
            "sku": "zold-sapka",
            "message": "Update successful."
        }
    ]
}

Error messages that occur

Missing SKU. Property wholesalePrice missing. Property recommendedPrice missing. No price was provided. Product is not dropshipped or SKU doesn't exists. Incorrect price format, only positive numbers allowed!

Url: json

https://app.webshippy.com/wspyapi/DropshippyPriceChange/xml
https://app.webshippy.com/wspyapi/DropshippyPriceChange/