- Developer Docs
- Products
- Plans
- Plan Modifications
- Subscriptions
- Lifecycle
- How does XPay collect recurring payments?
- How do I create a subscription now and later start the billing cycle?
- Payment methods
- Skip and unskip
- Pause
- Resume
- Cancel
- Update a Subscription’s Schedule / Payment
- Modifying individual invoice
- Proration
- Failure use-cases
- Retries
- Subscription Status
- How do I collect a failed recurring payment?
- Payment Link
- In-app experience
- Invoices
- Webhooks
E2E Integration Example
API Docs
Developer Docs
A subscription comprises three parts:
- Products
- Plans
- Subscription
Products
- A product needs to be created, against which a plan will be created and later subscribed.
- To start with, you will need to add these two required fields
product name
price
- The price of the products will be summed to calculate the total amount of a plan and used to create subscriptions against that plan.
- The pricing can be changed at the plan level, which is discussed in detail here.
- The
id
key referring to SKU
is optional, but if provided, it will be considered unique for a merchant and can't be added to another product object.
Product Price Update
-
In the case of updating product prices, the plans and subscriptions associated with the products won't be updated automatically.
- The
Update Subscription API
will need to be called to update the price of each product for a subscription.
{
"payment": {
"latest_product_price": true
},
"product": [
{
"name": "Ali",
"product_id": "xpay_product_90e8c92b774641adad16325722fe8c20",
"quantity": 1
},
{
"name": " Raza",
"product_id": "xpay_product_e302a0a0ec984e18aadd09e296323c8c",
"quantity": 1
}
],
}
Plans
A plan is a schedule defining how merchants intend to collect recurring payments.
- In plans, the merchant will specify
interval
, every
, etc.
- When a user selects a plan and pays, a subscription is created against that plan.
- A subscription is always created against a plan, and later recurring payments are collected as per that plan.
- The Plans API supports adding single or multiple products to one plan.
Interval
Interval |
day |
week |
month |
year |
Update the plan
- The existing subscriptions won’t be updated by default if the plan updates.
- To update subscriptions, the merchant needs to use the
Update Subscription API
with Plan ID to update individual subscriptions.
{
"plan_id": "xpay_plan_6f51cae83bbb45bd8588fe0c95e4c2b6"
}
<aside>
⚠️
- If plan_id is added, it will update the latest billing cycle, products, and payment from the plan ID and override any such value being added in the payload.
</aside>
<aside>
💡 To update a subscription's pricing, billing cycle, etc., kindly refer to Update a Subscription’s Schedule / Payment.
</aside>
Plan pricing
By default, the price of each product will add up to the plan price. However, XPay supports manually adding amounts and currencies if pricing needs to be changed based on frequency, etc. In this case, the Create Plan API
expects the amount: number
, and currency: string
to be passed.
Subscriptions
- A subscription will be created against a plan, and the billing cycle will start from the start date.
- The
start_date
, plan_id
, timezone
, and payment_token
need to be mentioned.
<aside>
⚠️ The subscription is not created at the customer but at the plan level. If different plans are offered to multiple customers, then merchants will save those plans in their system.
</aside>
Lifecycle
Status |
Reason |
inactive |
Payment Failed |
paid |
Payment successful |
draft |
Created but no action performed |
How does XPay collect recurring payments?
XPay will create an invoice
for every recurring payment.
- This invoice will have an ID, an associate payment intent ID, a payment date, etc.
- The latest invoice status will be the subscription status at any given time.
- The subscription status will be inactive if the first two invoices are
paid
but the third fails.
- The payment against the invoice will be attempted as per the
start_date
and plan
provided.
How do I create a subscription now and later start the billing cycle?
This is the use case where
- A free trial is being offered.
- The user wants to checkout now and start a subscription later.
- Requiring authentication and authorization from the cardholder without starting a subscription.
The merchant can do this if the Payment Method token doesn’t exist.
- Create a PI of the minimum amount allowed by the acquirer.
confirmPayment()
SDK to authenticate, authorize, and collect payment method tokens.
- Use that PM in the
Create Subscription API
. XPay will create a subscription and start collecting recurring payments per the payload.
Payment methods
- The payment method token needs to be added in the
Create Subscription API
.
- If the merchant already has a payment method, it can be provided while creating a subscription.