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:- Navigate to the Records section
- Click on Accounts
- View a complete list of all account records in Nexus Search
Account Creation
Quick Start
To create a new account:Configure AI Profile Generation
A dialog opens where you can enable or disable AI-assisted account creation (enabled by default)
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
Required and Optional Fields
Company Name (Required)- Enter the company name (e.g., “Mustermann AG”)
- This field is mandatory for account creation
- Add the company website or domain
- Used by AI to enhance the company portrait
- Website content is analyzed and incorporated
- 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
- 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
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
Deleting an Account
To delete an account:
Claude description:
1) Deleting an Account
| What | What Happens | Mechanism |
|---|---|---|
| Account record | Deleted | Edge function step 4 |
| Documents (account_files rows) | Deleted | DB CASCADE on account_id FK |
| Document files in account-files bucket | Deleted | Edge function step 1 (storage cleanup) |
| Activities referencing this account | Account ID removed from account_ids array; activity deleted if no other entity references remain | Edge function step 3 |
| Related Contacts | NOT deleted — contacts are independent entities; they may reference the account via account_id but that FK is likely SET NULL or NO ACTION | DB FK behavior |
| Related Projects | NOT deleted — projects linked via account_id remain; FK is likely SET NULL | DB FK behavior |
(2) Other Entities
| Entity | Documents Cleaned | Storage Cleaned | Activities Cleaned | Special Handling |
|---|---|---|---|---|
| Contact | contact_files rows via CASCADE | contact-files bucket files removed | contact_ids array updated | None. Related account is NOT affected. |
| Candidate | candidate_files rows via CASCADE | candidate-files bucket files removed | candidate_ids array updated | None. Applications referencing this candidate depend on DB FK behavior (likely CASCADE or SET NULL). |
| Project | project_files rows via CASCADE | project-files bucket files removed | project_ids array updated | None. Related jobs/account are NOT deleted. |
| Job | job_files rows via CASCADE | job-files bucket files removed | job_ids array updated | screening_questions and form_submissions manually deleted first (NO ACTION FK). |
| Application | application_files rows via CASCADE | application-files bucket files removed | application_ids array updated | None. Related candidate/job are NOT affected. |