cURL
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>" } ]
Retrieves a product
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The response is of type object[].
object[]