GET
/
v2
/
products
/
{productId}
curl --request GET \
  --url https://api.production.orderprotection.com/v2/products/{productId} \
  --header 'Authorization: Bearer <token>'
[
  {
    "productId": "<string>",
    "name": "<string>",
    "description": "<string>",
    "sku": "<string>",
    "price": 123,
    "tax": 123,
    "productImage": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

productId
string
required

Response

200
application/json
productId
string
required
name
string
required
description
string
required
sku
string
required
price
number
required
tax
number
required
productImage
string
required