Standalone customer portal
Learn how link the Bunny customer portal with your platform to enable self service subscription management and upgrades.
Setup API credentials
Request a portal token
{
"tenantCode": "superdesk-123",
"expiry": 123 // optional - default 24 hours
}mutation portalSessionCreate ($tenantCode: String!, $expiry: Int!) {
portalSessionCreate (tenantCode: $tenantCode, expiry: $expiry) {
errors
token
}
}res = await bunny.createPortalSession("superdesk-123");res = BunnyApp::PortalSession.create(
tenant_code: 'superdesk-123'
)Redirect to the customer portal
Last updated
Was this helpful?
