🎉 🎉 Announce $3.5M Seed Funding
-> Read More

Signup URL Redirect

Buyers Signup URL on Marketplaces goes to Suger first, then redirect to your service Signup URL.


Overview

When the buyers purchased your product in one marketplace (AWS, Azure or GCP), they would get a link to set up or register the account on your service website. The link will be directed to the Suger endpoint, after decoding and processing, it will be redirected to your service signup URL.

How it works

  1. You provide Suger with your product signup URL, for example, https://your-service-signup-url.
  2. When a buyer purchased your service in the marketplace, they get a link sent to Suger endpoint https://api.suger.cloud/public/signup/{partner}/orgId/{orgId}, where the partner can be aws, azure or gcp, and the orgId is your Suger Organization ID.
  3. Suger will take care of several interactions (including decode token, register entitlement & buyer info, etc.) and will resolve to a Suger Entitlement ID.
  4. Suger redirects the buyer to your signup URL with two query parameters https://your-service-signup-url?sugerEntitlementId=entitlement-id&partner={partner}, they are sugerEntitlementId and partner, the parameter partner can be aws, azure or gcp.
  5. Your service need to collect the sugerEntitlementId, and save it with the buyer's account. The ID can be used to fetch detailed Entitlement & Buyer info from the Suger API, and meter usage records as well.
  • For AWS Marketplace, there can be a delay of up to 5 minutes to send the marketplace event to notify Suger the new purchase. So when buyers set up the account immediately right after the purchase, Suger know the product & buyer info, but may not know which offer is purchased.
  • To bring better experiences, Suger creates new Entitlement with the default offer, and redirect the signup URL with the Entitlement ID. Once the marketplace event is received, the entitlement will be updated with the right Offer info. You webhook will receive the Entitlement Update event.
  • Your service is responsible to fetch the latest Entitlement info. The entitlement ID & Status are not changed in this scenario.