방문자 목록 조회
Last updated
Was this helpful?
Was this helpful?
curl -X GET 'https://salesmap.kr/api/v2/sdr/lead' \
-H 'Authorization: Bearer <sea-profile-token>'{
"success": true,
"data": {
"leadList": [
{
"id": "lead-id",
"organizationId": "organization-id",
"fieldList": [
{"id": "field-id", "label": "이메일", "value": "visitor@example.com"}
],
"lastVisitedAt": "2026-07-22T07:00:00.000Z",
"contactCollected": true,
"notedForSales": false,
"createdAt": "2026-07-22T06:00:00.000Z",
"updatedAt": "2026-07-22T07:00:00.000Z"
}
],
"nextCursor": null
}
}