Razorpay Action Block
The Razorpay Action Block creates payment links via the Razorpay API for collecting payments from customers.
⚠️
API Credentials Required. Get your Key ID and Key Secret from the Razorpay Dashboard (opens in a new tab) under Settings > API Keys.
Configuration
- Amount: Payment amount in currency units (e.g. rupees, converted to paise automatically)
- Currency: Currency code (default: INR)
- Description: Payment description (supports
{{variables}}) - Customer Name: Customer's name (supports
{{variables}}) - Customer Contact: Customer's phone number (required)
- Customer Email: Customer's email (supports
{{variables}}) - Reference ID: Optional reference ID for tracking
- Notify via SMS/Email: Toggle SMS and email notifications
- Callback URL: URL to redirect after payment
Output
Returns the Razorpay payment link object:
{
"id": "plink_abc123",
"amount": 10000,
"currency": "INR",
"short_url": "https://rzp.io/i/abc123",
"status": "created"
}Use Cases
- Generating payment links for invoices
- Automating payment collection in sales workflows
- Sending payment requests with customer notifications
- Integrating payments into order processing pipelines