> ## Documentation Index
> Fetch the complete documentation index at: https://docs.spark360.io/llms.txt
> Use this file to discover all available pages before exploring further.

# lead.contact_requested

> Optional webhook fired when contact_info_provided is received.

`lead.contact_requested` fires on `contact_info_provided` and arrives after `lead.enriched`.

<Note>
  `lead.enriched` is required for every subscription.
</Note>

Lead payloads include:

```json theme={null}
{
  "source_tracking": {
    "widget_version": "01",
    "widget_name": "Primary",
    "source_code": "01",
    "source_label": "Website"
  }
}
```

```json theme={null}
{
  "event": "lead.contact_requested",
  "event_id": "uuid-v4",
  "timestamp": "2026-04-06T14:22:00Z",
  "organization_id": "b8ff2073-228d-4f0f-b5db-28b49cf4069e",
  "data": {
    "lead_id": "b543b8ca-87ff-45e9-8d04-65c61853c853",
    "flow_id": "ad64cf83-45d9-4f72-a57a-c028f0678fdc",
    "lead_status": "contact_info_provided",
    "source_tracking": {
      "widget_version": "01",
      "widget_name": "Primary",
      "source_code": "01",
      "source_label": "Website"
    },
    "contact": {
      "first_name": "Rhett",
      "last_name": "Butler",
      "email": "rhett.butler@email.com",
      "phone": "(770) 448-5252"
    },
    "contact_preference": {
      "phone_call": "Weekend works best",
      "appointment": null,
      "asked_not_to_contact": false
    }
  }
}
```
