Razorpay integration
Payment gateway and financial services platform for businesses in India
- Provider
- razorpay
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 42 available
Quick start
Call Razorpay from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Razorpay's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"RAZORPAY_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Razorpay API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
42 actions exposed via the
Razorpay integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
RAZORPAY_CANCEL_INVOICE -
RAZORPAY_CANCEL_PAYMENT_LINK -
RAZORPAY_CREATE_AN_ORDER -
RAZORPAY_CREATE_CONTACT -
RAZORPAY_CREATE_CUSTOMER -
RAZORPAY_CREATE_INVOICE -
RAZORPAY_CREATE_ITEM -
RAZORPAY_CREATE_PAYMENT_LINK -
RAZORPAY_DELETE_INVOICE -
RAZORPAY_DELETE_ITEM -
RAZORPAY_FETCH_ALL_CUSTOMERS -
RAZORPAY_FETCH_ALL_INVOICES
Show all 42 actions
-
RAZORPAY_FETCH_ALL_PAYMENT_LINKS -
RAZORPAY_FETCH_ALL_PAYMENTS -
RAZORPAY_FETCH_ALL_REFUNDS_FOR_A_PAYMENT -
RAZORPAY_FETCH_A_PAYMENT_LINK -
RAZORPAY_FETCH_INVOICE_BY_ID -
RAZORPAY_FETCH_ORDERS -
RAZORPAY_FETCH_ORDERS_BY_ID -
RAZORPAY_FETCH_PAYMENTS_BY_ORDER -
RAZORPAY_FETCH_REFUNDS -
RAZORPAY_GET_CONTACT -
RAZORPAY_GET_CUSTOMER -
RAZORPAY_GET_FUND_ACCOUNT -
RAZORPAY_GET_ITEM -
RAZORPAY_GET_SETTLEMENT_RECON -
RAZORPAY_GET_TRANSFER_REVERSALS -
RAZORPAY_ISSUE_AN_INVOICE -
RAZORPAY_LIST_CUSTOMER_TOKENS -
RAZORPAY_LIST_DISPUTES -
RAZORPAY_LIST_FUND_ACCOUNTS -
RAZORPAY_LIST_FUND_VALIDATIONS -
RAZORPAY_LIST_ITEMS -
RAZORPAY_LIST_PAYMENT_DOWNTIMES -
RAZORPAY_NOTIFY_PAYMENT_LINK -
RAZORPAY_SEND_OR_RESEND_NOTIFICATION -
RAZORPAY_UPDATE_CONTACT -
RAZORPAY_UPDATE_CUSTOMER -
RAZORPAY_UPDATE_INVOICE -
RAZORPAY_UPDATE_ITEM -
RAZORPAY_UPDATE_ORDER -
RAZORPAY_UPDATE_PAYMENT_LINK
Build with Razorpay
Open OverSkill, describe what you want to build, and reference Razorpay in your prompt — the AI will wire up the integration automatically.