Skip to main content

Overview

Accounts in Nexus Search represent organizations or companies with whom you have or are establishing a business relationship. They serve as the central hub for managing all interactions, contacts, projects, and opportunities related to a specific company.

Finding Accounts

You can access your accounts through the left sidebar navigation:
  1. Navigate to the Records section
  2. Click on Accounts
  3. View a complete list of all account records in Nexus Search

Account Creation

Quick Start

To create a new account:
1

Open Account Creation

Click the blue “Add Account” button in the top right corner
2

Configure AI Profile Generation

A dialog opens where you can enable or disable AI-assisted account creation (enabled by default)
3

Enter Account Details

Fill in the required and optional fields
4

Review AI-Generated Profile

Review the automatically generated company profile
5

Create Account

Click “Create Account” to finalize

AI-Assisted Profile Generation

When AI-assisted profile generation is enabled, Nexus Search uses AI-powered web searches and additional data sources to automatically describe the organization or company. This includes:
  • Company activities and business description
  • Locations and office information
  • Publicly known decision-makers
  • Other relevant information to better understand the company
Content from the company website is incorporated into the company portrait.

Required and Optional Fields

Company Name (Required)
  • Enter the company name (e.g., “Mustermann AG”)
  • This field is mandatory for account creation
Website/Domain (Recommended)
  • Add the company website or domain
  • Used by AI to enhance the company portrait
  • Website content is analyzed and incorporated
Account Description (Optional)
  • Add custom notes or observations
  • Options for adding content:
    • Copy and paste from other sources
    • Type your own thoughts and notes
    • Use Speech-to-Text feature to dictate your observations
      • AI creates a transcript automatically
      • Transcript is inserted into the description field
Account Workflow (Optional)
  • Select a workflow stage (e.g., “Prospect”, “New Customer”, “Existing Customer”)
  • Account workflows can be configured in Settings under “Workflows”

Profile Review

After clicking “Create Profile”, you’ll see an overview page displaying:
  • AI-Generated Company Portrait - Comprehensive description of the company
  • Extracted Information:
    • Industry classification
    • Company size
    • Headquarters location
    • LinkedIn URL
Review the generated information and click “Create Account” to finalize.

Viewing Account Details

Once created, you’ll be directed to the account detail page where you can:
  • View structured data in the Details tab
  • See the AI-generated company profile
  • Edit any information as needed
  • Access related records (contacts, projects, jobs, etc.)

Editing Account Details

1

Open Account Details

Navigate to the account detail page
2

Access Details Tab

Click on the “Details” tab
3

Enter Edit Mode

Click the “Edit” button on the right side
4

Modify Fields

All account sections will open for editing. Update any relevant fields.
5

Save or Cancel

  • Click “Save” at the bottom of the page to save changes
  • Or click “Cancel” to discard changes

Deleting an Account

Deleting an account will permanently remove the account and associated data. This action cannot be undone.
To delete an account:
1

Open Account Details

Navigate to the account detail page
2

Access Details Tab

Click on the “Details” tab
3

Scroll to Danger Zone

Scroll to the bottom of the page to find the red-highlighted danger zone
4

Initiate Deletion

Click the “Delete Account” button
5

Confirm Deletion

  • Read the warning about data loss
  • Type the account name into the confirmation field
  • Click “Delete Account” to confirm
Claude description:

1) Deleting an Account

WhatWhat HappensMechanism
Account recordDeletedEdge function step 4
Documents (account_files rows)DeletedDB CASCADE on account_id FK
Document files in account-files bucketDeletedEdge function step 1 (storage cleanup)
Activities referencing this accountAccount ID removed from account_ids array; activity deleted if no other entity references remainEdge function step 3
Related ContactsNOT deleted — contacts are independent entities; they may reference the account via account_id but that FK is likely SET NULL or NO ACTIONDB FK behavior
Related ProjectsNOT deleted — projects linked via account_id remain; FK is likely SET NULLDB FK behavior

(2) Other Entities

EntityDocuments CleanedStorage CleanedActivities CleanedSpecial Handling
Contactcontact_files rows via CASCADEcontact-files bucket files removedcontact_ids array updatedNone. Related account is NOT affected.
Candidatecandidate_files rows via CASCADEcandidate-files bucket files removedcandidate_ids array updatedNone. Applications referencing this candidate depend on DB FK behavior (likely CASCADE or SET NULL).
Projectproject_files rows via CASCADEproject-files bucket files removedproject_ids array updatedNone. Related jobs/account are NOT deleted.
Jobjob_files rows via CASCADEjob-files bucket files removedjob_ids array updatedscreening_questions and form_submissions manually deleted first (NO ACTION FK).
Applicationapplication_files rows via CASCADEapplication-files bucket files removedapplication_ids array updatedNone. Related candidate/job are NOT affected.
In all cases: The function only deletes the single entity you target plus its direct dependents (files, activities). It does not walk up or sideways to delete related first-class entities (e.g. deleting a project won’t delete its jobs; deleting a candidate won’t delete their applications unless the DB FK is set to CASCADE).