Skip to main content
GET
/
merchant
/
product
/
list
Get Product List
curl --request GET \
  --url https://api.unibee.dev/merchant/product/list \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "products": [
      {
        "createTime": 123,
        "description": "<string>",
        "homeUrl": "<string>",
        "id": 123,
        "imageUrl": "<string>",
        "isDeleted": 123,
        "merchantId": 123,
        "metaData": "<string>",
        "productName": "<string>",
        "status": 123,
        "usVATConfig": {
          "active": true,
          "fromAddress": {
            "address": "<string>",
            "city": "<string>",
            "countryCode": "<string>",
            "state": "<string>",
            "verified": true,
            "zipCode": "<string>"
          },
          "nexusAddresses": [
            {
              "address": "<string>",
              "city": "<string>",
              "countryCode": "<string>",
              "state": "<string>",
              "verified": true,
              "zipCode": "<string>"
            }
          ],
          "sellOnUSOnly": true,
          "taxCode": "<string>",
          "toAddress": {
            "address": "<string>",
            "city": "<string>",
            "countryCode": "<string>",
            "state": "<string>",
            "verified": true,
            "zipCode": "<string>"
          }
        }
      }
    ],
    "total": 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

status
integer<int>[]

Filter, Default All,,Status,1-active,2-inactive

sortField
string<string>

Sort Field,id|create_time|gmt_modify,Default id

sortType
string<string>

Sort Type,asc|desc,Default desc

page
integer<int>

Page, Start 0

count
integer<int>

Count Of Per Page

Response

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