After successful payment, Webhook url is called which contains information such as payment id and other details. If two or more persons simultaneously did payment. And each one using different payment links. Whether the post information returning will get to the corresponding person? Or whether there is a chance to misplace the post information to any other person?
How can i confirm that the return payment info get to the same person who made payment? Is there any way to attach some value to the payment link from the seller site to identify the person who made payment??
POST request sent to Webhook URL will contain the data entered by the user during the payment including their
name
,email
,phone
.If you're using same Webhook URL for different payment links then also you can identify which Payment link was used to make this payment. The POST request contains fields like
offer_slug
andoffer_title
which can be used to identify the Payment link used.If that is not enough then you can define custom fields for your links and pass some custom data with them. Check Instamojo's integration documentation for more details.