Your Visits
Live visit and click data for your corresponding Tap'd-In card/account.
Live Profile Preview
Your live preview stays synced with saved Profile Edits and hard-refreshes immediately after every successful save.
Internal CRM
Add prospects and move each lead from New to Warm, Hot, or Dead.
Scan or Upload Contact
Scan a QR/vCard with the camera, upload a card image, upload from your camera roll, paste contact text, or generate a QR link to open this CRM on your phone.
Lead List
Profile Edits
Update contact info, profile photo, social links, colors, fonts, layout, YouTube, and announcements. Every submitted change is pushed to the live profile preview immediately after Save.
Google Sheets Link
Paste your Google Sheet link and Apps Script web app URL. Tap'd-In will sync saved CRM leads to your sheet.
Apps Script Setup
In Google Sheets, go to Extensions → Apps Script, paste this, deploy as Web App, and allow Anyone with the link.
function doPost(e) {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
var data = JSON.parse(e.postData.contents);
var lead = data.lead || {};
sheet.appendRow([
new Date(),
data.profileSlug || "",
lead.full_name || lead.fullName || "",
lead.company_name || lead.companyName || "",
lead.phone || "",
lead.email || "",
lead.status || "",
lead.notes || ""
]);
return ContentService
.createTextOutput(JSON.stringify({ ok: true }))
.setMimeType(ContentService.MimeType.JSON);
}Microsoft Authenticator
Use Microsoft Authenticator as an additional sign-in and recovery option. Scan the QR code, or add the manual key, then verify a 6-digit code.
Support
For login, profile, card, or data issues, contact Tap'd-In Admin at [email protected]. We can take up to 72 hours to resolve issues. Hablamos Español.
Tap'd-In keeps account sessions in secure HTTP-only cookies and stores passwords as salted hashes. For stronger protection, enable Microsoft Authenticator.