| Name | Type | Description | Notes |
|---|---|---|---|
| firstName | String | First name of the contact | [optional] |
| lastName | String | Last name of the contact | [optional] |
| String | Email address of the contact (required and must be unique within team). Validation: - Must be a valid email format - Must be unique within the team - Cannot be empty or null | ||
| company | String | Company name of the contact | [optional] |
| customFields | Map<String, String> | Custom fields as key-value pairs. Keys should use `field_` prefix. Processing: - Keys are case-sensitive - Values are stored as strings Examples: - `"field_MnuqBAG2NPLm7PZMWbjQxt": "Engineering"` → stored as `department: Engineering` | [optional] |
| lists | List<String> | Array of list identifiers to associate with the contact. Identifiers should use `list_` prefix. Processing: - Invalid list IDs will send our 400 error - Duplicates will be removed Examples: - `"list_OcuxJHdiAvujmwQVJfd3ss"` → valid prefixed format | [optional] |
| tags | List<String> | Array of tag identifiers to associate with the contact. Identifiers should use `tag_` prefix. Processing: - Invalid tag IDs will be ignored - Duplicates will be removed Examples: - `"tag_UhsDkjL772Qbj5lWtT62VK"` → valid prefixed format | [optional] |
| lastTrackedIp | String | Last tracked IP address of the contact for analytics purposes. Usage: - Used for geographic analytics - Helps with spam detection - Optional field | [optional] |