BuyBack

Retrieve a Buyback listing

This endpoint returns a single BuyBack listing based on its public id.

get/ws/buyback/v1/listings/{buybackListingId}

Path parameters

buybackListingIdstring uuid required

BuyBack listing id

Response

Successful Response

idstring uuid required
productIdstring uuid required
pricesobject required
aestheticGradeCode'FUNCTIONAL_FLAWLESS' | 'FUNCTIONAL_GOOD' | 'FUNCTIONAL_USED' | 'FUNCTIONAL_CRACKED' | 'NOT_FUNCTIONAL_USED' | 'NOT_FUNCTIONAL_CRACKED' required
skustring nullable required

SKU defined by the seller. In case of a trade-in listing, it can be null.

marketsstring[] required

Example response

{
  "id": "d80340a5-6460-4a9c-a8a6-c1c6d56b11c7",
  "productId": "263b4873-3b6b-413e-815e-c3451117893c",
  "prices": {
    "FR": {
      "amount": "34.50",
      "currency": "EUR"
    }
  },
  "aestheticGradeCode": "FUNCTIONAL_FLAWLESS",
  "sku": "seller-sku",
  "markets": [
    "FR"
  ]
}