Signup page

If you have products or plans that you want anyone (outside your organization) to be able to sign up for, you can set up a Signup page on the Bunny Portal.

Construct the signup page URL

https://[SUBDOMAIN].bunny.com/portal/signup
    ?priceListCode=[PRICE_LIST_CODE]
    &token=[TOKEN]
    &returnUrl=[RETURN_URL]
    &couponCode=[COUPON_CODE]
    &firstName=[FIRST_NAME]
    &lastName=[LAST_NAME]
    &email=[EMAIL]
    &companyName=[COMPANY_NAME]
    &billingCountry=[BILLING_COUNTRY]
  • [SUBDOMAIN]: Your Bunny account subdomain (e.g., acme if you access Bunny via https://acme.bunny.com).

  • [PRICE_LIST_CODE]: The code for the product or plan you want customers to sign up for.

  • [TOKEN] The token from the API client you created with signup:read and signup:write scopes.

  • [COUPON_CODE] The default coupon code (if valid) be automatically applied.

  • [RETURN_URL] (optional but recommended): A URL to which the user will be redirected after completing signup. Probably your company website.

  • [FIRST_NAME] , [LAST_NAME] etc are optional default values that will be inserted into the signup fields.

Example

Suppose you have the following:

  • SUBDOMAIN: acme

  • PRICE_LIST_CODE: business-annual

  • TOKEN: 12345

  • RETURN_URL: https://bunny.com

Then your signup page link would look like this:

https://acme.bunny.com/portal/signup?priceListCode=business-annual&token=12345&returnUrl=https://bunny.com

When a user clicks this link, they will be taken to the Bunny portal’s signup page:

Last updated

Was this helpful?