# 7.3 Contact Form 7 - Integration

Custom field values can now be updated through the Contact Form 7 form. To enable data updates, you’ll need to add a hidden field in the form. The hidden field is:

```
// Enable a form
[hidden lcw_form]
```

This hidden field activates data submission to the CRM. You also need to include the respective custom field keys and standard field keys in the form fields.

```
// for the basic fields
[text* firstName] // use the basic field key 
[text* lastName]
[email* email]

// for custom field
[text highest_steps_a_day] // get the key from {{ contact.highest_steps_a_day }}
```

Adding these fields will ensure data updates flow smoothly into the CRM.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://better-wizard.gitbook.io/lead-connector-wizard/7.-custom-values-and-custom-fields/7.3-contact-form-7-integration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
