Install
openclaw skills install razorpay-paymentsManage Razorpay customers, orders, invoices, payment links, refunds, payouts, and payment operations via the Razorpay API. Use when users want to inspect or manage payments, create and track invoices, process refunds, or automate payout workflows.
openclaw skills install razorpay-paymentsManage Razorpay from chat — customers, orders, invoices, payment links, refunds, payouts, and payment operations via the Razorpay API.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Razorpay API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Razorpay |
|---|---|---|
![]() | ![]() | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Razorpay |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Razorpay │
│ (User Chat) │ │ (OAuth) │ │ (Payments API) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Razorpay │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Razorpay │
│ File │ │ Auth │ │ Dashboard│
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Razorpay again."
# List all payments
clawlink_call_tool --tool "razorpay_fetch_all_payments" --params '{"count": 10}'
# Create an order
clawlink_call_tool --tool "razorpay_create_an_order" --params '{"amount": 5000, "currency": "INR"}'
# Create an invoice
clawlink_call_tool --tool "razorpay_create_invoice" --params '{"amount": 5000, "currency": "INR", "description": "Invoice for services"}'
All Razorpay tool calls are authenticated automatically by ClawLink using the user's connected Razorpay account.
No API key is required in chat. ClawLink stores the credentials securely and injects them into every Razorpay API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for razorpay in the list.
clawlink_list_tools --integration razorpay
Response: Returns the live tool catalog for Razorpay.
If Razorpay tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration razorpay| Tool | Description | Mode |
|---|---|---|
razorpay_create_customer | Register a new customer | Write |
razorpay_get_customer | Fetch customer details | Read |
razorpay_update_customer | Update customer details | Write |
razorpay_fetch_all_customers | List all customers | Read |
| Tool | Description | Mode |
|---|---|---|
razorpay_create_an_order | Create a payment order | Write |
razorpay_fetch_orders | List orders with filters | Read |
razorpay_fetch_orders_by_id | Fetch a specific order | Read |
razorpay_update_order | Update order notes/metadata | Write |
razorpay_fetch_payments_by_order | Get payments for an order | Read |
| Tool | Description | Mode |
|---|---|---|
razorpay_fetch_all_payments | List all payments | Read |
razorpay_fetch_all_refunds_for_a_payment | List refunds for a payment | Read |
razorpay_list_disputes | List payment disputes | Read |
razorpay_list_payment_downtimes | Check payment method status | Read |
| Tool | Description | Mode |
|---|---|---|
razorpay_create_invoice | Create a new invoice | Write |
razorpay_fetch_invoice_by_id | Fetch invoice details | Read |
razorpay_fetch_all_invoices | List all invoices | Read |
razorpay_update_invoice | Update a draft invoice | Write |
razorpay_issue_an_invoice | Issue/send a draft invoice | Write |
razorpay_cancel_invoice | Cancel an issued invoice | Write |
razorpay_delete_invoice | Delete a draft invoice | Write |
razorpay_send_or_resend_notification | Send invoice notification | Write |
| Tool | Description | Mode |
|---|---|---|
razorpay_create_payment_link | Create a shareable payment link | Write |
razorpay_fetch_a_payment_link | Fetch a payment link | Read |
razorpay_fetch_all_payment_links | List all payment links | Read |
razorpay_update_payment_link | Update a payment link | Write |
razorpay_cancel_payment_link | Cancel a payment link | Write |
razorpay_notify_payment_link | Send payment link reminder | Write |
| Tool | Description | Mode |
|---|---|---|
razorpay_fetch_refunds | List all refunds | Read |
razorpay_fetch_all_refunds_for_a_payment | List refunds for a payment | Read |
| Tool | Description | Mode |
|---|---|---|
razorpay_create_contact | Create a contact | Write |
razorpay_get_contact | Fetch contact details | Read |
razorpay_update_contact | Update contact details | Write |
razorpay_list_fund_accounts | List fund accounts | Read |
razorpay_get_fund_account | Fetch a fund account | Read |
razorpay_list_fund_validations | List account validations | Read |
| Tool | Description | Mode |
|---|---|---|
razorpay_create_item | Create an invoice item | Write |
razorpay_get_item | Fetch item details | Read |
razorpay_list_items | List all items | Read |
razorpay_update_item | Update an item | Write |
razorpay_delete_item | Delete an item | Write |
| Tool | Description | Mode |
|---|---|---|
razorpay_get_settlement_recon | Fetch settlement reconciliation | Read |
razorpay_get_transfer_reversals | List transfer reversals | Read |
clawlink_call_tool --tool "razorpay_create_an_order" \
--params '{
"amount": 250000,
"currency": "INR",
"receipt": "order_rcptid_1"
}'
clawlink_call_tool --tool "razorpay_create_invoice" \
--params '{
"amount": 250000,
"currency": "INR",
"description": "Invoice for project services",
"customer_id": "CUSTOMER_ID"
}'
clawlink_call_tool --tool "razorpay_fetch_all_payments" \
--params '{
"count": 20,
"skip": 0
}'
clawlink_call_tool --tool "razorpay_create_payment_link" \
--params '{
"amount": 50000,
"currency": "INR",
"description": "Payment for Order #1234",
"customer_email": "customer@example.com"
}'
clawlink_list_integrations to confirm Razorpay is connected.clawlink_list_tools --integration razorpay to see the live catalog.clawlink_search_tools with a short query and integration razorpay.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → fetch → get → call │
│ │
│ Example: List payments → Fetch details → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ list → describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview changes → User approves │
│ → Execute create │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.amount: 5000 = ₹50.00.draft status can be updated or deleted.issued status can be cancelled.| Status / Error | Meaning |
|---|---|
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration razorpay. |
| Missing connection | Razorpay is not connected. Direct the user to https://claw-link.dev/dashboard?add=razorpay. |
INVOICE_NOT_DRAFT | Invoice is not in draft state — only draft invoices can be updated or deleted. |
PAYMENT_LINK_NOT_ACTIVE | Payment link has expired or been cancelled. |
BAD_REQUEST | Invalid parameters or missing required fields. Check the tool schema. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
openclaw plugins list
/new as a standalone message to reload the catalog.openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
/new again and retry.razorpay.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.