방문자 상세 조회
Last updated
Was this helpful?
Was this helpful?
curl -X GET 'https://salesmap.kr/api/v2/sdr/lead/<leadId>' \
-H 'Authorization: Bearer <sea-profile-token>'{
"success": true,
"data": {
"lead": {
"id": "lead-id",
"organizationId": "organization-id",
"fieldList": [{"id": "field-id", "label": "이름", "value": "홍길동"}],
"lastVisitedAt": "2026-07-22T07:00:00.000Z",
"contactCollected": true,
"notedForSales": false,
"privacyConsentAgreedAt": "2026-07-22T06:30:00.000Z",
"organization": {
"id": "organization-id",
"name": "세일즈맵",
"segmentId": "segment-id",
"segmentName": "Enterprise"
},
"createdAt": "2026-07-22T06:00:00.000Z",
"updatedAt": "2026-07-22T07:00:00.000Z"
}
}
}