v1.19.0 (Deprecated)

New Endpoints

  • GET /stores/:storeKey/inventory/customListings
    • Returns a the CustomListingId and URL for the custom listing.
  • PUT /stores/:storeKey/buylist/skus/batch
    • Updates a batch of buylist prices. PUT body should be in the format:
[
    {
        "SkuId": 1,
        "Price": 1.11
    },
     
    {
        "SkuId": 2,
        "Price": 2.22
    },
     
    {
        "SkuId": 3,
        "Price": 3.33
    }
]

Modified Inputs

  • PUT /stores/:storeKey/buylist/skus/:skuId/price
    • Request is now a JSON body in the following format:
{
    "price": 12.34
}