> ## Documentation Index
> Fetch the complete documentation index at: https://developers.plane.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

Customers allow you to manage customer relationships and track customer-related work items, requests, and custom properties within a workspace.

[Learn more about Customers →](https://docs.plane.so/customers)

## The Customer object

**Attributes**

* `id` *uuid*

  Unique identifier for the customer

* `name` *string* **(required)**

  Name of the customer

* `email` *string*

  Email address of the customer

* `workspace` *uuid*

  Workspace UUID which is automatically saved

* `created_at` *timestamp*

  The timestamp when the customer was created

* `updated_at` *timestamp*

  The timestamp when the customer was last updated

* `created_by` *uuid*

  ID of the user who created the customer

* `updated_by` *uuid*

  ID of the user who last updated the customer

<ResponseExample>
  ```json CUSTOMER OBJECT theme={null}
  {
  	"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  	"created_at": "2023-11-19T11:56:55.176802Z",
  	"updated_at": "2023-11-19T11:56:55.176809Z",
  	"name": "Acme Corporation",
  	"email": "contact@acme.com",
  	"workspace": "cd4ab5a2-1a5f-4516-a6c6-8da1a9fa5be4"
  }
  ```
</ResponseExample>
