
Overview
CloudlessPay is a next-gen platform designed to simplify payment gateway integration for developers. Whether you're just starting out or are an experienced developer, CloudlessPay offers an intuitive interface, secure token management, and a powerful API playground—making it easier than ever to manage and test payment flows without the usual complexity.
CloudlessPay integrates seamlessly with leading payment providers like Razorpay, empowering you to manage orders, subscriptions, and transactions effortlessly. The Razorpay Order API allows you to programmatically create, track, and manage payment orders. An Order represents a specific amount and currency, acting as a container for one or more payment attempts. It's typically the first step before accepting customer payments.
This combination ensures developers have complete control over the payment lifecycle—from creating an order to tracking its status and handling payment retries—all through a developer-friendly and secure environment.
Cloudlesspay Sdk
CloudlessPay is a next-gen platform designed to simplify payment gateway integration for developers. Whether you're just starting out or are an experienced developer, CloudlessPay offers an intuitive interface, secure token management, and a powerful API playground—making it easier than ever to manage and test payment flows without the usual complexity.
CloudlessPay integrates seamlessly with leading payment providers like Razorpay, empowering you to manage orders, subscriptions, and transactions effortlessly. The Razorpay Order API allows you to programmatically create, track, and manage payment orders. An Order represents a specific amount and currency, acting as a container for one or more payment attempts. It's typically the first step before accepting customer payments.
This combination ensures developers have complete control over the payment lifecycle—from creating an order to tracking its status and handling payment retries—all through a developer-friendly and secure environment.
<script src="https://cdn.jsdelivr.net/gh/Mcube-Infotech/Cloudlesspay-SDK/dist/cloudlesspay.min.js"></script>
const cloudlesspay = new CloudlessPayment({ key: "Your-API-key" });
Order
- cloudlesspay.order.create(data)
- cloudlesspay.order.fetchAll()
- cloudlesspay.order.fetchById(orderId)
- cloudlesspay.order.updateById(orderId, data)
Payment
- cloudlesspay.payment.create(paymentId, data)
- cloudlesspay.payment.fetchAll()
- cloudlesspay.payment.fetchByID(paymentId)
- cloudlesspay.payment.updateById(paymentId, data)
Customer
- cloudlesspay.customer.create(data)
- cloudlesspay.customer.fetchAll()
- cloudlesspay.customer.fetchByID(customerId)
- cloudlesspay.customer.updateById(customerId, data)
Plan
- cloudlesspay.plan.create(data)
- cloudlesspay.plan.fetchAll()
- cloudlesspay.plan.fetchByID(planId)
Razorpay Subscription
- cloudlesspay.subscription.create(data)
- cloudlesspay.subscription.fetchAll()
- cloudlesspay.subscription.fetchByID(subscriptionId)
- cloudlesspay.subscription.updateById(subscriptionId, data)
- cloudlesspay.subscription.subscriptionResumeById(subscriptionId,data)
- cloudlesspay.subscription.subscriptionPauseById(subscriptionId,data)
- cloudlesspay.subscription.cancelSubscription(subscriptionId, data)
- cloudlesspay.subscription.createSubscriptionLink(data)