Skip to Content
Getting StartedAccount Setup

Account Setup

This guide walks you through creating your Quazzar Space account and configuring it for production use — from initial sign-up through security settings and subscription selection.

Creating Your Account

  1. Navigate to app.quazzar.space  and click Sign Up
  2. Enter your full name, email address, and a strong password
  3. Check your inbox for a verification email and click the confirmation link
  4. You will be redirected to the platform with a Free plan activated automatically

Your account is ready to use immediately after email verification. You can upgrade your plan at any time from the Billing section.

Configuring Your Profile

After signing in, go to Settings (gear icon in the sidebar) to complete your profile:

  • Display Name — How your name appears to team members across all projects
  • Email — Your primary contact email (also used for notifications)
  • Phone Number — Optional; used for account recovery
  • Timezone — Ensures scheduled tasks, logs, and reports show correct local times
  • Avatar — Upload a profile photo for easy identification in team views

Enabling Two-Factor Authentication

We strongly recommend enabling TOTP-based two-factor authentication to protect your account.

Setup Steps

  1. Go to Settings > Security > Two-Factor Authentication
  2. Click Enable 2FA
  3. Scan the QR code with your authenticator app (Google Authenticator, Authy, 1Password, or any TOTP-compatible app)
  4. Enter the six-digit code from your authenticator to confirm setup
  5. Store the backup recovery codes in a secure location — you will need them if you lose access to your authenticator

Signing In with 2FA

Once enabled, every login will require your password followed by a six-digit code from your authenticator app. If you lose access to your authenticator, use one of your backup recovery codes to sign in and reconfigure 2FA.

Managing API Keys

API keys allow you to interact with Quazzar Space programmatically. They are available on the Starter plan and above.

Generating an API Key

  1. Go to Settings > API Keys
  2. Click Create API Key
  3. Give the key a descriptive name (e.g., “CI/CD Pipeline”, “Terraform Integration”)
  4. Copy the key immediately — it will only be shown once

Using Your API Key

Include the key in the Authorization header of your API requests:

curl -H "Authorization: Bearer YOUR_API_KEY" \ https://app.quazzar.space/api/v1/projects

Key Management Best Practices

  • Create separate keys for each integration or automation tool
  • Rotate keys periodically by generating a new key and deleting the old one
  • Never commit API keys to version control — use environment variables or a secrets manager
  • Revoke keys immediately if they may have been compromised

Choosing a Subscription Plan

Your account starts on the Free plan with 1 project, 5 services, and 1 user. To unlock more capacity and features, upgrade from Settings > Billing.

Upgrading Your Plan

  1. Go to Settings > Billing
  2. Click Change Plan
  3. Select the plan that fits your team’s needs (see the tier comparison)
  4. Enter your payment details — all payments are processed securely via Stripe
  5. Your new limits and features take effect immediately

Annual Billing

Switch to annual billing for approximately 17% savings (two months free). You can switch between monthly and annual billing from the Billing page at any time.

Managing Payment Methods

From Settings > Billing > Payment Methods, you can:

  • Add or update credit/debit cards
  • Set a default payment method
  • View upcoming charges and billing cycle dates

Invoices

All invoices are available under Settings > Billing > Invoices. Each invoice includes a downloadable PDF with a full breakdown of charges. Invoices are generated automatically at the start of each billing cycle.

Notification Preferences

Configure how you receive platform notifications under Settings > Notifications:

ChannelExamples
EmailInvitation received, password changed, invoice ready
In-AppService health alerts, team activity, cost threshold warnings
IntegrationsForward alerts to Slack, Discord, or Microsoft Teams

Next Steps