Trigger Clay Table Enrichment
clay_trigger_enrichmentSend data to a Clay webhook to trigger a table-based enrichment workflow.
Instructions
Send data to a Clay webhook to trigger a table-based enrichment workflow.
Clay tables run custom enrichment sequences (waterfall emails, phone lookups, intent signals, etc.). The webhook URL is unique to each Clay table — get it from your Clay table settings.
Args:
webhook_url (string): The Clay webhook URL for the enrichment table
data (object): Key-value pairs to send (e.g. { "email": "john@acme.com", "company": "Acme" })
response_format ('markdown' | 'json')
Returns: Confirmation that data was submitted. Enrichment runs asynchronously — results appear in your Clay table.
Examples:
Trigger enrichment: webhook_url='https://...', data={"email":"john@acme.com","name":"John Doe"}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | Yes | Key-value data to send to the webhook (e.g. {email: 'x@y.com', company: 'Acme'}) | |
| webhook_url | Yes | The Clay webhook URL for the target enrichment table | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |