Razorpay to Sheets
Status: Closed · Asked by RLTR Group on · 0 views
I have added a webhook on Razorpay.
while testing this is how it's coming
I just did a 10 rupee credit and the workflow is showing 1000

attached I the payment screenshot from razorpay
Attachments

yes, razorpay always adds 00 at the end of the amount.
You can use number formatted to divide amount by 100.
Here is an example for transaction of 1 rupee, which razorpay sends as 100, so to convert it to 1 I did this -

Thank you!