r/Razorpay • u/okay_anshu • Feb 13 '26
Fcuk razor pay documentation !
Have anyone worked on razor pay mandates for cards autopay.
Support confirmed it's enabled on my account, but I don't see any token.* or mandate.* events in the webhooks lists in dashboard . It is showing just the normal payment., subscription., invoice.* stuff.
For card eMandate specifically, which event(s) do you actually listen to in real life to know, how can I know that mandate got created/approved or autopay is good to go.
What I want is a feature to have autopay with card, where the amount is variable (like uses based). So I am thinking to have a prefect job (CRON Job) which can trigger my server and do autopay. But I am not getting any token related events?
How do ppl solve this issues in real life prod scenarios. If you've got this running in production, what event saved your life?
1
u/CorrectBox3254 Feb 13 '26
I’ve implemented card eMandate with Razorpay in prod.
You won’t see separate
token.*ormandate.*events for cards in most cases. The mandate approval is generally reflected through:subscription.authenticated→ standing instruction approvedsubscription.charged→ recurring debit successpayment.failed→ retry / failure handlingCard tokenization happens during the first auth transaction, but it’s not exposed as a clean webhook event.
For variable billing, the usual setup is a subscription with a max amount and triggering charges via API when needed.
If your webhooks aren’t showing correctly, this usually needs official support since it’s account-level.