# customer

> The customer Liquid object in a Shoplazza theme, holding the signed-in customer and returning nil when nobody is signed in, with the full list of its properties.

A customer of the store.

Outside of the above contexts, if the customer isn't logged into their account, the `customer` object returns `nil`.

| Properties     | Type                                | Description                                                             |
| :------------- | :---------------------------------- | :---------------------------------------------------------------------- |
| `id`           | [string](../basics/liquid-types#string) | The ID of the customer.                                                 |
| `name`         | [string](../basics/liquid-types#string) | The full name of the customer.                                          |
| `first_name`   | [string](../basics/liquid-types#string) | The first name of the customer.                                         |
| `last_name`    | [string](../basics/liquid-types#string) | The last name of the customer.                                          |
| `email`        | [string](../basics/liquid-types#string) | The email of the customer.                                              |
| `phone`        | [string](../basics/liquid-types#string) | The phone number of the customer.                                       |
| `info`         | [array](../basics/liquid-types#array)   | All of the orders are placed by the customer.                           |
| `orders_count` | [number](../basics/liquid-types#number) | The total number of orders that the customer has placed.                |
| `tags`         | [string](../basics/liquid-types#string) | The tag of the customer, displayed only when the customer is logged in. |

```json title="Object"
{
  "email": "email@shoplazza.com",
  "first_name": "Fashion",
  "id": "81a4045d-ca0e-4fc9-8dad-3aa4ba8ef234",
  "info": [],
  "last_name": "Maker",
  "name": "Fashion Maker",
  "orders_count": 0,
  "phone": "+441314960905",
  "tags": "tag1,tag2"
}
```
