Skip to main content

Creating a Tenant

Once self-signup is complete, the next step is to create a tenant.

In this case, the Free Plan created in the tutorial will be automatically applied when creating a tenant.

    // Retrieving validated data
$validated = $request->validated();

// Using the SaaSusSDK
$client = new ApiClient();
$authClient = $this->client->getAuthClient();
$pricingClient = $this->client->getPricingClient();

// Searching for pricing plans
$pricingPlans = $pricingClient->getPricingPlans();
$nextPlanId = "";
foreach ($pricingPlans->getPricingPlans() as $pricingPlan) {
if ($pricingPlan['display_name'] == 'Free Plan') {
$nextPlanId = $pricingPlan['id'];
}
}

// Raise an error if the plan id could not be obtained
if (empty($nextPlanId)) {
return response()->json(['detail' => 'Failed to retrieve plan information.'], Response::HTTP_INTERNAL_SERVER_ERROR);
}

// Tenant creation
// Tenant name: Name entered on the screen
// Back office staff email: Logged-in user's email address
$tenant = $authClient->createTenant((object)array(
'name' => $tenantName,
'back_office_staff_email' => $email,
));

// Retrieve the ID of the created tenant
$tenantId = $tenant->getId();

// Specify a time at least 5 minutes in the future from the current time when changing the plan
$currentTimeWith5MinutesAfterUnixTime = Carbon::now('UTC')->addMinutes(5)->timestamp;

// Update plan information
$authClient->updateTenantPlan($tenantId, (object)array(
'next_plan_id' => $nextPlanId,
'using_next_plan_from' => $currentTimeWith5MinutesAfterUnixTime,
));

You can check if the tenant was created successfully using the API by visiting "SaaS Operation Console > Tenant Management".

tenant