consumer: "zapier" for the event types the trigger needs, and removes it when the Zap is turned off. Those webhooks stay out of GET /v1/webhooks unless you pass include_zapier=true, and they do not count toward the 25 webhook limit.| Trigger | Event type | Options |
| New Prospect | prospect.added | Record type (properties or people), include contact details |
| Prospect Status Changed | prospect.lifecycle_changed | New status (Active, Opportunity, Archived), record type |
| Prospect Tagged | prospect.tags_changed, added tags only | A specific tag, record type |
| Note Added to Prospect | prospect.note_added | Record type |
id is the event id, event_type and occurred_at come from the event, and prospect, note, added, and previous_lifecycle match the shapes on the events page. Filters such as the destination status run inside Zapier, so a Zap only uses a task when the filter matches.GET /v1/prospects), shaped like the live event, so the fields you map while building are the fields the trigger sends.POST /v1/webhooks and include "prospect.added" in event_types.| Action | Endpoint |
| Add Prospect | POST /v1/prospects, with POST /v1/enrichment/address first when only a street address is given |
| Add Note to Prospect | POST /v1/prospects/{id}/notes |
| Add Tag to Prospect | POST /v1/prospects/{id}/tags/{tag_id}, creating the tag through POST /v1/tags when a new name is typed |
| Add File to Prospect | Download the mapped file, request POST /v1/prospects/{id}/files/upload-url, upload it, then register it |
| Change Prospect Status | PATCH /v1/prospects/{id} |
| Add to List | POST /v1/lists/{list_id}/items (adds as prospects unless turned off) |
GET /v1/prospects/by-record. Every DealMachine API request carries X-DealMachine-Source: zapier, so prospects first added by a Zap show source: "zapier". Notes, tags, files, and status changes are recorded under the connected DealMachine user.GET /v1/prospects/{id}, or a record
type and record ID and calls GET /v1/prospects/by-record. It returns the current lifecycle,
record summary, tags, and note and file counts without consuming data credits.