Skip to main content
GET
/
vendor
/
customers
/
{id}
Get Customer details
curl --request GET \
  --url https://api.example.com/vendor/customers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "customer": {
    "id": "<string>",
    "company_name": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "phone": "<string>",
    "has_account": true,
    "groups": [
      {
        "id": "<string>",
        "name": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the customer.

Response

200 - application/json

OK

customer
VendorCustomer · object

Customer who placed an order in sellers store.