Purchase
When user initiates checkout, fire the below event.
Event Name
mp_purchase
Event Payload
{
event: {
currency: 'INR', /* Currency of website */
transaction_id: '<order id>', /* Order Id of transaction */
cart_id: '<unique cart id>', // mandatory
value: 123.33, // float value of order
coupon: '<optional coupon>', // Leave this undefined if there is no coupon
shipping: 123.33, // total shipping value in float
tax: 123.33, // total tax value in float
tracking_url: '', // url for tracking the order status
items: [/* Refer to Products Array page in reference below */],
ev_source: '<Orign of the event>' // Example: Razorpay, Gokwik, etc.
},
customer_info: {
pid: '<unique identifier representing user>',
email: '<email address of user>',
phone: '<phone number of user - no country code>',
country: '<country code only>',
city: '<city>',
state: '<state>',
fName: '<first name of user>',
lName: '<last name of user>',
zip: '<zip code>',
}
Last updated