v1

latestOpenAPI 3.1.02026-07-2665153355.3 KB

Delete a Price Point

Deletes a specific price point.

delete/v1/price-points/{priceInUsdCents}

Path parameters

priceInUsdCentsnumber required
Example:999

Base price in USD cents.

Response

Price point deleted successfully.

priceInUsdCentsnumber

Base price in USD cents.

lastUpdatestring date-time

Timestamp indicating when the price point was last updated, in UTC ISO 8601 format.

Example response

{
  "priceInUsdCents": 999,
  "lastUpdate": "2026-01-01T14:30:00Z",
  "priceByCountry": [
    {
      "price": 7.99,
      "currencyCode": "GBP",
      "taxModel": "Included",
      "taxRate": 20,
      "country": "United Kingdom",
      "countryCode2": "GB",
      "usdExchangeRateOnCalc": 0.79,
      "exchangeRateDrift": "-1.2%"
    }
  ]
}