Product
Get product
Get a product by ID from the Terminal shop.
get/product/{id}
Path parameters
idstring required
ID of the product to get.
Example:prd_XXXXXXXXXXXXXXXXXXXXXXXXX
Response
The requested product.
Example response
{
"data": {
"id": "prd_XXXXXXXXXXXXXXXXXXXXXXXXX",
"name": "[object Object]",
"description": "The interpolation of Caturra and Castillo varietals from Las Cochitas creates this refreshing citrusy and complex coffee.",
"variants": [
{
"id": "var_XXXXXXXXXXXXXXXXXXXXXXXXX",
"name": "12oz",
"price": 2200
}
],
"order": 100,
"subscription": "allowed",
"tags": {
"featured": true
},
"filters": []
}
}