Rigi
  • Webhooks
    • Payment Completion
    • Payment Failed
    • KYC | Onboarding Completed
  • Integrations
    • Google Tag Manager
    • Google Analytics
    • Facebook/Meta Pixel
    • SnapChat Pixel
Powered by GitBook
On this page
  • Page Visit
  • Add To Cart
  • Payment Complete
  1. Integrations

Google Tag Manager

We immediately send the following events.

Page Visit

As soon as a user visits any of our offering pages, we send an event for the same.

Add To Cart

As soon as a user starts a payment for any offering, we send add_to_cart event with below parameters.

{
content_ids: window.location.pathname, //offering url
content_name: offering?.title, //offering title
content_type: "course", //offerinh type
currency: "INR",
value: offering?.price, //offering price in INR
num_items: 1,
}

Payment Complete

Once a user completes payment for any offering, we send a purchase event with below parameters.

{
content_ids: window.location.pathname, //offering url
content_name: offering?.title, //offering title
content_type: "course", //offerinh type
currency: "INR",
value: offering?.price, //offering price in INR
num_items: 1,
}

PreviousIntegrationsNextGoogle Analytics

Last updated 1 year ago