KuvarPay API
Home
Home
  1. Subscriptions
  • Overview
  • SDK Integration Guide
  • Webhooks Integration Guide
  • Subscriptions Guide
  • Transactions
    • Calculate Payment Amount
    • Create Transaction
    • Get Transactions Details
    • Get Transactions
  • Checkout Sessions
    • Create Checkout Session
    • Get Checkout Session
  • Transfer Fees
    • /api/v1/optimal-transfer-fee
  • Sandbox Simulator
    • Force Simulator Scenario
    • Force Transaction Status
  • Invoices
    • Create a new invoice
    • Send invoice email to customer
  • Payment Links
    • Create a new payment link
  • Server-Sent Events (SSE)
    • Get Transaction Details
    • Get Session Details
  • Subscriptions
    • Create Plans
      POST
    • Get Plans
      GET
    • Get Plans Details
      GET
    • Update Plans Details
      PATCH
    • Create Prices
      POST
    • Get Prices
      GET
    • Update Prices Details
      PATCH
    • Create Checkout Sessions
      POST
    • Get Checkout Sessions Details
      GET
    • Confirm Subscription Checkout
      POST
    • Create Subscriptions
      POST
    • Get Subscriptions
      GET
    • Get Subscriptions Details
      GET
    • Update Subscriptions Details
      PATCH
    • Delete Subscriptions Details
      DELETE
    • Renew Subscription
      POST
    • Confirm Subscription Cancellation
      POST
    • Create Subscription Invoices
      POST
    • Upgrade Subscription
      POST
    • Get Subscription Invoices
      GET
    • Downgrade Subscription
      POST
    • Renew Subscription Authorization
      POST
    • Create Metered Invoices
      POST
    • Get Subscription Invoices Details
      GET
    • Get Charge Attempts
      GET
    • Create Authorizations
      POST
    • Revoke Relay Authorization
      POST
    • Get Relay Authorization Status
      GET
  • Currencies
    • Get Subscription Currencies
    • Get Supported Currencies
    • Get networks supported for subscription payments
    • Get Currencies
    • Get all supported networks
  • Schemas
    • ErrorResponse
    • CreateInvoiceRequest
    • CreatePaymentLinkRequest
    • InvoiceResponse
    • PaymentLinkResponse
    • CreateInvoiceResponse
    • CreatePaymentLinkResponse
    • SendInvoiceEmailRequest
    • SendInvoiceEmailResponse
    • SubscriptionInvoice
Home
Home
  1. Subscriptions

Create Subscription Invoices

POST
/api/v1/subscriptions/{id}/subscription-invoices
Subscriptions

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Path Params

Body Params application/json

Examples

Responses

🟢201Created
application/json
Default Response
Body

🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/subscriptions//subscription-invoices' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": "string",
    "description": "string",
    "due_date": "2019-08-24T14:15:22.123Z",
    "usage_quantity": 0,
    "usage_description": "string",
    "billing_mode": "FIXED",
    "metadata": {}
}'
Response Response Example
201 - Example 1
{
    "success": true,
    "data": {
        "uid": "string",
        "subscription_id": "string",
        "invoice_id": "string",
        "amount": "string",
        "currency": "string",
        "token_address": "string",
        "status": "string",
        "description": "string",
        "due_date": "string",
        "paid_at": "string",
        "voided_at": "string",
        "attempt_count": 0,
        "next_payment_attempt": "string",
        "processing": true,
        "metadata": {},
        "created_at": "string",
        "updated_at": "string"
    }
}
Modified at 2026-01-06 17:05:00
Previous
Confirm Subscription Cancellation
Next
Upgrade Subscription
Built with