Disabling Reminders during Payment Link Creation🔗
To disable reminders for a Payment Link, pass reminder_enable as false, during Payment Link creation.
Copycurl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \
-X POST https://api.razorpay.com/v1/invoices/ \
-H 'Content-type: application/json' \
-d '{
"customer": {
"name": "Acme Enterprises",
"email": "admin@aenterprises.com",
"contact": "9999999999"
},
"type": "link",
"view_less": 1,
"amount": 6742,
"currency": "INR",
"description": "Payment Link for this purpose - cvb.",
"receipt": "#TS1981",
"sms_notify": 1,
"email_notify": 1,
"reminder_enable": false,
"expire_by": 1793630556
}'
Copy{
"id": "inv_F6oLUl8ITtcL9X",
"entity": "invoice",
"receipt": "#TS1989",
"invoice_number": "#TS1989",
"customer_id": "cust_F6oLUlgQIhIkV6",
"customer_details": {
"id": "cust_F6oLUlgQIhIkV6",
"name": "Acme Enterprises",
"email": "admin@aenterprises.com",
"contact": "9999999999",
"gstin": null,
"billing_address": null,
"shipping_address": null,
"customer_name": "Acme Enterprises",
"customer_email": "admin@aenterprises.com",
"customer_contact": "9999999999"
},
"order_id": "order_F6oLUntcttJpqh",
"line_items": [],
"payment_id": null,
"status": "issued",
"expire_by": 1793630556,
"issued_at": 1593078040,
"paid_at": null,
"cancelled_at": null,
"expired_at": null,
"sms_status": "pending",
"email_status": "pending",
"date": 1593078040,
"terms": null,
"partial_payment": false,
"gross_amount": 6742,
"tax_amount": 0,
"taxable_amount": 0,
"amount": 6742,
"amount_paid": 0,
"amount_due": 6742,
"currency": "INR",
"description": "Payment Link for this purpose - cvb.",
"notes": [],
"comment": null,
"short_url": "https://rzp.io/i/O3dDeus",
"view_less": true,
"billing_start": null,
"billing_end": null,
"type": "link",
"group_taxes_discounts": false,
"created_at": 1593078040
}
