> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-881012b3.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.

<div style={{display:"flex",flexWrap:"wrap",alignItems:"center",gap:"0.35rem 0.9rem",border:"1px solid rgba(128,128,128,0.28)",borderRadius:"0.5rem",padding:"0.45rem 0.75rem",margin:"0 0 1.25rem",fontSize:"0.875rem"}}>
  <span style={{fontWeight:600}}>Available in</span>
  <span>🇮🇳 India</span>
  <span>🇸🇬 Singapore</span>
</div>

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 />

Fork the Razorpay Postman Public Workspace and try the Customers APIs using your [Test API Keys](/docs/api/authentication#generate-api-keys).

<a href="https://www.postman.com/razorpaydev/workspace/razorpay-public-workspace/folder/12492020-d53fbf12-1684-44ab-9c20-47d7b3d1f2ae" target="_blank">![Run in Postman](https://run.pstmn.io/button.svg)</a>

<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)
