Skip to main content

Documentation Index

Fetch the complete documentation index at: https://aczen-d43c4738.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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

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

Endpoint

POST /payments/links

Request Body

{
  "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"
}