Shop Item
This endpoint is a GET request that retrieves a specific product from the Shop based on the provided productId. In this example, the productId parameter is mandatory
{
"message": "No Message",
"data": {
"parentId": "string",
"productId": "string",
"name": "string",
"baseCurrency": "EUR",
"region": "local",
"variants": {
["VariantId"]: {
"quote": 0,
"name": "string",
"state": "ACTIVE",
"sku": "string"
}
// Additional variants can be listed here
},
"productType": "fixed",
"customerDeal": "CustomerDeal"
}
}Last updated