Create Stripe Checkout Session
create Stripe Checkout Session.
import { Norbix } from '@norbix.ai/ts';
const norbix = new Norbix();
const result = await norbix.hub.account.createStripeCheckoutSession({
projectCap: 10,
domain: 'example.com',
newProjectSessionId: 'newprojectsession_4kX9mQvR2tYw7ZbC1dFgHj',
returnUrl: 'https://app.example.com/billing/return',
});using Norbix.Sdk;
using Norbix.Sdk.Types.Hub;
using var client = new NorbixClient();
var result = await client.Account.CreateStripeCheckoutSessionAsync(new CreateStripeCheckoutSession
{
ProjectCap = 10,
Domain = "example.com",
NewProjectSessionId = "newprojectsession_4kX9mQvR2tYw7ZbC1dFgHj",
ReturnUrl = "https://app.example.com/billing/return",
});In the dashboard
API reference
Last updated