GET
/
vendor
/
customers
/
{id}
{
  "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

The response is of type object.