GET
/
merchant
/
product
/
detail
curl --request GET \
  --url https://api.unibee.top/merchant/product/detail \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "product": {
      "createTime": 123,
      "description": "<string>",
      "homeUrl": "<string>",
      "id": 123,
      "imageUrl": "<string>",
      "isDeleted": 123,
      "merchantId": 123,
      "metaData": "<string>",
      "productName": "<string>",
      "status": 123
    }
  },
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

productId
integer
required

ProductId

Response

200 - application/json
code
integer
data
object
message
string
redirect
string
requestId
string