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

# Receiving Payments from Clients

> Create, manage, and send payment links with invoices using Aczen Payments.

## Overview

Aczen Payments enables businesses to create and share payment links with clients, along with detailed invoices. This allows seamless collection of payments without requiring complex integrations.

With Aczen, you can:

* Generate payment links instantly
* Attach invoices to each payment request
* Track payment status in real-time
* Automate reminders and collections

***

## Use Cases

* Freelancers collecting payments from clients
* SMBs sending invoices with payment options
* SaaS platforms billing customers
* Agencies managing multiple client payments

***

## Key Features

### Payment Links

Create secure, shareable payment links that can be sent via:

* Email
* SMS
* WhatsApp
* Embedded in your platform

### Invoice Generation

Automatically generate invoices with:

* Line items
* Taxes
* Discounts
* Client details

### Real-Time Tracking

Track payment status:

* Pending
* Paid
* Expired

### Notifications

* Automated payment reminders
* Payment success alerts

***

## Create a Payment Link

### Endpoint

`POST /payments/links`

### Request Body

```json theme={null}
{
  "amount": 5000,
  "currency": "INR",
  "customer": {
    "name": "Ravi Kumar",
    "email": "ravi@example.com",
    "phone": "9876543210"
  },
  "invoice": {
    "number": "INV-1001",
    "description": "Website Development Services",
    "items": [
      {
        "name": "Frontend Development",
        "quantity": 1,
        "price": 3000
      },
      {
        "name": "Backend Development",
        "quantity": 1,
        "price": 2000
      }
    ]
  },
  "expiry_time": "2026-12-31T23:59:59Z"
}
```
