Recurring Invoices
Automatically generate and send invoices on a recurring schedule.
How It Works
Recurring invoices are powered by Subscriptions. When a subscription renews, Ikawaari automatically creates and sends an invoice.
Create a Recurring Invoice
- Create a Product with a recurring Price
- Create a Subscription for the customer
- Ikawaari generates invoices automatically at each billing cycle
curl -X POST https://api.ikawaari.com/v1/subscriptions \
-H "Authorization: Bearer ik_test_your_key" \
-H "Content-Type: application/json" \
-d '{
"customer": "cus_abc123",
"items": [
{ "price": "price_monthly_50000" }
]
}'
Each billing period, a new invoice is created, finalized, and sent to the customer automatically.