cURL
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>" } ] } }
Retrieves the details of specified customer.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the customer.
OK
Customer who placed an order in sellers store.
Show child attributes