docs.remarkable.net
IdPrices

Get product prices

Get all prices for a product, using the productId. Allows Anonymous.

GET/v1/products/{id}/prices
AuthorizationBasic <token>

Basic Authorization header using the Bearer scheme.

In: header

Authorization<token>

JWT Authorization header using the Bearer scheme.

In: header

Path Parameters

idinteger
Formatint32

Response Body

curl -X GET "https://loading/v1/products/0/prices"
{
  "productPrices": [
    {
      "priceKey": "string",
      "currencyIso": "string",
      "itemPrice": 0.1,
      "rrp": 0.1,
      "fullPrice": 0.1,
      "savingAmount": 0.1,
      "savingPercentage": 0.1
    }
  ]
}
{
  "message": "string",
  "code": 0
}
{
  "succeeded": true,
  "errors": [
    {
      "message": "string"
    }
  ]
}

How is this guide?