Skip to main content
GET
/
store
/
sellers
/
{id}
Retrieve seller detail
curl --request GET \
  --url https://staging.api.commercengine.io/api/v1/{store_id}/storefront/store/sellers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "message": "<string>",
  "success": true,
  "content": {
    "seller_detail": {
      "id": "<string>",
      "trade_name": "<string>",
      "legal_name": "<string>",
      "business_type": "<string>",
      "tax_identification_number": "<string>",
      "description": "<string>"
    },
    "reviews_stats": {
      "rating_sum": 123,
      "count": 123
    }
  }
}

Authorizations

Authorization
string
header
required

Access token

Path Parameters

id
string
required

Seller ID

Response

OK

message
string
success
boolean
content
object