# SDR Form HubSpot Properties

**Last Updated:** 2026-03-10

## Overview

This document describes the custom HubSpot properties created for the SDR booking form on `/sdr`.

## Properties

### genannter_preis__c

**Property Name:** `genannter_preis__c`  
**Label:** Genannter Preis  
**Type:** string  
**Field Type:** text  
**Group:** contactinformation  
**Required:** No  
**Description:** Preis den der SDR genannt hat (z.B. "89€" oder "89-149€")

**Usage:**
- Captures price information mentioned by SDR during lead qualification
- Free-form text field allowing flexible input formats
- Used for pricing discussions and deal qualification

**Created:** 2026-03-10  
**Script:** `v2/scripts/hubspot/setup-sdr-properties.php`

### kaufinteresse_4_monate__c

**Property Name:** `kaufinteresse_4_monate__c`  
**Label:** Kaufinteresse innerhalb der nächsten 4 Monate  
**Type:** bool  
**Field Type:** booleancheckbox  
**Group:** contactinformation  
**Required:** No  
**Description:** Hat der Lead Interesse innerhalb der nächsten 4 Monate zu kaufen?

**Options:**
- `true` - Ja
- `false` - Nein

**Usage:**
- Captures purchase timeline qualification
- Used for lead scoring and prioritization
- Helps identify high-intent leads

**Created:** 2026-03-10  
**Script:** `v2/scripts/hubspot/setup-sdr-properties.php`

## Related Properties

### anzahl_mitarbeiter__c

**Property Name:** `anzahl_mitarbeiter__c`  
**Label:** Anzahl Mitarbeiter  
**Type:** string  
**Field Type:** text  
**Group:** salesforceinformation  
**Required:** No  
**Description:** Number of employees

**Usage:**
- Used in SDR form to capture company size
- Maps to form field: `anzahl_mitarbeiter__c`
- Used for lead qualification and segmentation

**Note:** This property existed prior to SDR form standardization (2026-03-10)

## Form Integration

These properties are integrated into the HubSpot embedded form on `/sdr`:

- **Form ID:** `ad1036ce-33ec-463b-adde-2fa546324c8a`
- **Portal ID:** `145133546`
- **Region:** `eu1`

### Form Field Mapping

| Form Field Name | HubSpot Property | Type | Required |
|----------------|-----------------|------|----------|
| `anzahl_mitarbeiter__c` | `anzahl_mitarbeiter__c` | number | No |
| `genannter_preis__c` | `genannter_preis__c` | single_line_text | No |
| `kaufinteresse_4_monate__c` | `kaufinteresse_4_monate__c` | single_checkbox | No |

## Property Creation

Properties are created using the setup script:

```bash
php v2/scripts/hubspot/setup-sdr-properties.php
```

**Dry-run mode:**
```bash
php v2/scripts/hubspot/setup-sdr-properties.php --dry-run
```

## Related Documentation

- [HubSpot SDR Form Hidden Fields](../../implementation/hubspot-sdr-form-hidden-fields.md) - Form implementation details
- [Form IDs Reference](../../forms/form-ids-reference.md) - Form tracking configuration
- [HubSpot Integration Guide](../../guides/HUBSPOT_INTEGRATION_GUIDE.md) - General HubSpot integration
