Skip to main content
POST
/
api
/
v2
/
leads
/
{leadId}
/
export
Mark a lead as exported
curl --request POST \
  --url https://api.example.com/api/v2/leads/{leadId}/export
Marks a lead as exported. Sets x_leads.exported_at = NOW() and logs an export event for batch-level audit. After export, the lead appears in ?lifecycle=exported filters and disappears from ?lifecycle=new. Re-exporting overwrites exported_at to the latest timestamp.

Body

FieldTypeDescription
exportTypestring (required)Free-form tag for the destination tool. Example: "csv", "heyreach", "apollo", "clay"
platformstringOptional platform tag (e.g. "x", "linkedin")

Response

{ "leadId": 1234, "exported": true }

Auth

Bearer or session cookie.