logoSellhub
Team
background
Sellhub Docs
Sellhub Docs
Store Team
GET
/store/team

Authorization

Authorization<token>

In: header

curl -X GET "https://dash.sellhub.cx/api/sellhub/store/team" \
  -H "Authorization: <token>"

A list of team members

{
  "data": {
    "team": [
      {
        "id": "seller_123",
        "email": "john@example.com",
        "name": "John Doe",
        "country": "US",
        "permissions": [
          "manage_products",
          "view_orders"
        ],
        "owner": true
      }
    ]
  }
}