Partner portal

Sign in

Welcome back to your partner dashboard.

Want to become a partner? Contact us to request access.

Forgot password?

Enter your email and we'll send you a reset link.

Back to sign in

Enter your new password below.

Flare.
Total revenue
Revenue this month
Reports sold
Reports this month
Monthly Revenue
Industry Breakdown
Customer Service Status Delivery Lifecycle Added Actions
Loading…
Date Company Industry Service Amount Payment Report status Report delivered
Loading…

Get ready

Subscription
Current plan

Status

Choose a plan below to activate all white-label features — branding on reports, emails, and the checkout page.

Manage your payment method, download invoices, or cancel your subscription via the Stripe billing portal.


Branding

Apply your logo, colours, and domain to reports, emails, and the checkout page.

Public HTTPS URL to your logo image (PNG or SVG recommended).
Enter the full hostname (e.g. reports.yourcompany.com), then add a CNAME record at your DNS provider pointing to getflare.net. Setup guide →
Color preview


Email Domain
Custom sending domain Not configured

Send assessment and report emails from your own address (e.g. [email protected]). Your customers will see your brand — not Flare — in the From field.

Step 1 — Register your sending address

Step 2 — Add these DNS records

Add the records below in your DNS provider, then click Verify. Changes can take up to 48 hours to propagate.

TypeNameValue / ContentPriority

Domain verified. Emails to your customers will now be sent from .


Go live

How you'll send assessments

Choose how you send security assessments: add customers manually from the portal, or trigger them automatically with the API after payment.

Manual (no code)

Add customers one by one and send the assessment email from the portal.

API (automated)

After your customer pays on your site, call our API to trigger the assessment email.


API Integration

If your website or backend collects payment, you can trigger assessments automatically with an API key after payment succeeds. For manual sending, use the Customers tab instead.

API Keys

No API keys yet. Generate one to get started.

PrefixLabelLast usedCreated


For developers

After your customer pays on your platform, call this endpoint to trigger their assessment email:

Endpoint
POST https://api.getflare.net/api/partners/customers
curl example
curl -X POST https://api.getflare.net/api/partners/customers \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "[email protected]",
    "name": "João Silva",
    "company": "Acme Lda",
    "service_type": "starter"
  }'
Response
{
  "ok": true,
  "customer_id": 42,
  "email_sent": true,
  "message": "Assessment email sent to [email protected]"
}

service_type options: starter, growth, scale (partner subscription tiers)

The customer receives a branded assessment email from your domain. Once they complete it, the report is generated and delivered automatically.


Preferences

Report delivery

Default behaviour when you add a new customer: who receives the report email. You can override this per customer when adding them.


Security

Two-factor authentication (2FA)

Require a 6-digit code from an authenticator app after password sign-in.

Status: loading…

Scan with your authenticator app. You will need the 6-digit code on next login.

QR code

Or enter manually:

Jump to section

1 Activate your subscription

White-label features — branded reports, emails, and the checkout page — are only activated when you have an active subscription.

  1. Open Settings → Subscription in the left menu.
  2. Choose a plan from the pricing table and complete the checkout.
  3. Your subscription status badge will update to active.
  4. All white-label features activate immediately once payment is confirmed.
Without an active subscription, reports and emails will display the default Flare branding.
2 Configure your branding

Your branding is applied to report headers, email footers, and the Stripe checkout page.

  1. Go to Settings → Branding.
  2. Enter your Display name — appears in emails and the checkout page.
  3. Add a Logo URL — must be a public https:// URL (PNG or SVG recommended).
    Example: https://yourcompany.com/logo.png
  4. Pick your brand colours using the colour pickers — primary, secondary, and accent.
  5. Optionally set your subdomain (see Step 3 below).
  6. Click Save branding.
Logo URLs must use HTTPS and point to a publicly accessible image. Private or local addresses are not accepted.
3 Set up your custom subdomain Optional

A custom subdomain lets your customers access the assessment on your own domain — e.g. security.yourcompany.com.

What you need to do
  1. Choose your subdomain — e.g. reports.yourcompany.com.
  2. Create a CNAME DNS record at your domain registrar:
Type:   CNAME
Name:   reports          (or the subdomain prefix of your choice)
Value:  getflare.net
TTL:    300 (or auto)

If you're using a root-level apex domain, you may need an ALIAS or ANAME record instead. Check your DNS provider's documentation.

Common DNS providers
ProviderRecord typeWhere to find it
CloudflareCNAMEDNS → Records → Add record
GoDaddyCNAMEDNS Management → CNAME
NamecheapCNAMEAdvanced DNS → CNAME Record
AWS Route 53CNAMEHosted zones → Create record
Google DomainsCNAMEDNS → Custom records
  1. Wait for DNS propagation (usually 5–30 min, up to 48 h).
  2. Enter the full hostname (e.g. reports.yourcompany.com) in the Subdomain field in Branding settings and save.
  3. Click Re-check DNS in the Branding settings — the status badge will update to ✓ DNS verified once propagation is complete.
Subdomains must be lowercase, may contain hyphens, and must be a valid full hostname. Reserved names like www, api, admin are not allowed.
4 Set up your custom sending domain Optional

By default, welcome and report emails are sent from Flare's domain. With a custom sending domain, your customers receive emails from your own address — e.g. [email protected].

This uses Resend for reliable delivery. You do not need a Resend account — Flare manages everything on your behalf.

  1. Open Settings → Email Domain.
  2. Enter the address you want to send from and an optional display name.
  3. Click Register domain — you'll receive a set of DNS records to add.
  4. Add the displayed DNS records in your provider (typically DKIM TXT + SPF TXT + Return-Path CNAME).
    DNS changes can take up to 48 hours to propagate.
  5. Click Verify DNS records — the status updates to Verified ✓ when complete.
  6. All future emails to your customers will now be sent from your address.
Good to know: If verification fails, emails automatically fall back to the Flare sending address so your customers are never left without communication.
5 Go live — trigger assessments for your customers

Once branding is configured, you are ready to start delivering branded security assessments to your customers. There are two ways to trigger an assessment:

Option A — Manual (no tech required)

Best for non-technical partners or one-off customers.

  1. Collect payment from your customer using your own method (invoice, Stripe, etc.).
  2. Go to the Customers tab and click Add Customer.
  3. Enter the customer's email, name, and service type.
  4. Click Send Assessment — the customer receives a branded email immediately.
  5. Once they complete the assessment, the report is generated and sent directly to them.
Option B — API (automated)

Best for partners with a backend that can call an API after payment confirms.

  1. Go to Settings → API Integration and generate an API key.
  2. In your payment confirmation webhook or success handler, call:
    Request
    POST https://api.getflare.net/api/partners/customers
    Authorization: Bearer YOUR_API_KEY
    Content-Type: application/json
    
    { "email": "[email protected]", "name": "João", "service_type": "starter" }
  3. Flare sends the branded assessment email automatically — no further action needed.
All assessments and reports use your branding — your logo, colours, and sending domain appear throughout. Customers never see the Flare brand.
6 Report delivery default

When you add a new customer, you can choose who receives the report email by default: the customer directly, or you (so you can forward it). This setting applies to new customers; you can override it per customer when adding them.

  1. Open Settings, then scroll to the Report delivery section (under the Preferences heading).
  2. Toggle Default: send report to me so I can forward it to my customers on or off.
  3. Click Save.
7 Enable two-factor authentication (2FA) Recommended

Protect your partner account with a second factor. After you enable 2FA, you will need your password plus a 6-digit code from an authenticator app each time you sign in.

  1. Go to Settings → Two-factor authentication (2FA) in the left menu.
  2. Click Enable 2FA.
  3. Scan the QR code with an authenticator app (e.g. Google Authenticator, Authy, 1Password, or your phone’s built-in app). If you can’t scan, enter the secret code manually.
  4. On your next sign-in, you’ll be asked for the 6-digit code after entering your password. Enter the code shown in your app.
  5. To turn 2FA off later, go back to Settings → 2FA and click Disable 2FA (you’ll need to confirm).
Tip: Save your backup codes or secret key in a safe place. If you lose access to your authenticator app, you may need to contact support to regain access to your account.
Frequently Asked Questions

Your branding is temporarily removed from all new reports, emails, and the checkout page — the default Flare branding is used instead. Your account data and revenue history are preserved. Re-subscribing immediately re-activates your branding.

After collecting payment from your customer (using your own payment method), trigger their assessment either manually via Customers → Add Customer, or automatically via the API. Flare sends a branded assessment email to the customer immediately.

Yes — update your subdomain at any time in Settings → Branding. Remember to update your CNAME at your DNS provider to point to getflare.net, then use the Re-check DNS button to confirm.

PNG and SVG are recommended. The logo is displayed at a maximum height of 48px in reports and 36px in emails. Use a horizontal layout with a transparent background for best results.

All emails automatically fall back to Flare's sending address ([email protected]). Your customers will still receive their emails on time. You can retry verification at any time from Settings → Email Domain.

No. Flare manages the Resend integration on your behalf. You only need to add the DNS records provided in the dashboard. There is no third-party account to create or maintain.
Need help?

Contact our partner support team and we'll get you set up.

[email protected]