> ## Documentation Index
> Fetch the complete documentation index at: https://doc-test-my.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Customers

> Create, edit, and fetch Customer details using Razorpay APIs.

Add or create [Customers](/docs/payments/customers) with basic details such as name, email and contact details. You can then offer various Razorpay solutions to your customers. Edit customer details as needed. You can create and manage customers using APIs or from the [Dashboard](/docs/payments/customers).

<br />

<CardGroup cols={2}>
  <Card title="Create a Customer" href="/docs/api/customers/create">
    `POST` `/v1/customers`

    Creates or adds a customer with basic details such as name and contact details.
  </Card>

  <Card title="Edit Customer Details" href="/docs/api/customers/edit">
    `PUT` `/v1/customers/:id`

    Edits the customer details such as name, email and contact details.
  </Card>

  <Card title="Fetch All Customers" href="/docs/api/customers/fetch-all">
    `GET` `/v1/customers`

    Retrieves details of all the customers.
  </Card>

  <Card title="Fetch Customer With ID" href="/docs/api/customers/fetch-with-id">
    `GET` `/v1/customers/:id`

    Retrieves details of a customer as per the id.
  </Card>
</CardGroup>

## Related Guides

* [About Customers](/docs/payments/customers)
