Block 1 - Webhook
- Type / Role
- n8n-nodes-base.webhook - webhook
- Config choices
- Version 2
This workflow is provided as-is. Please review and test before using in production.
Verified Gym Trial Pass with Photo ID Overview Automate gym trial pass generation with email verification, photo ID integration, QR codes, and professional PDF passes. This workflow handles the com...
n8n-nodes-base.webhook, n8n-nodes-base.if, n8n-nodes-base.respondtowebhook, n8n-nodes-base.code, n8n-nodes-base.httprequest, n8n-nodes-base.set, n8n-nodes-base.gmail, n8n-nodes-base.googlesheets
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Jitesh Dugar.
Original n8n.io sourceAutomate gym trial pass generation with email verification, photo ID integration, QR codes, and professional PDF passes. This workflow handles the complete member onboarding process - from signup to verified pass delivery - in under 10 seconds.
GYM-{timestamp}✅ Email Verification - Blocks fake and disposable email addresses
✅ Photo ID Integration - Displays member photo on digital pass
✅ QR Code Generation - Instant check-in scanning capability
✅ Professional Design - Gradient purple design with modern styling
✅ PDF Export - Mobile-friendly format that members can save
✅ Automated Emails - Welcome message with pass attachment
✅ Spreadsheet Logging - Automatic record-keeping in Google Sheets
✅ Error Handling - Proper 400 responses for invalid signups
✅ Success Responses - Detailed JSON with all pass information
VerifiEmail API - Email verification service
HTMLCSSToImage API - PNG image generation
HTMLCSSToPDF API - PDF conversion
Gmail OAuth2 - Email delivery
Google Sheets API - Data logging
{
"name": "Rahul Sharma",
"email": "[email protected]",
"photo_url": "https://images.unsplash.com/photo-1633332755192-727a05c4013d?w=400",
"start_date": "2025-11-15",
"valid_till": "2025-11-22"
}
{
"status": "success",
"message": "Gym trial pass verified and sent successfully! 🎉",
"data": {
"pass_id": "GYM-1731398400123",
"email": "[email protected]",
"name": "Rahul Sharma",
"valid_from": "November 15, 2025",
"valid_till": "November 22, 2025",
"email_verified": true,
"recorded_in_sheets": true,
"pass_sent_to_email": true
},
"timestamp": "2025-11-12T10:30:45.123Z"
}
{
"status": "error",
"message": "Invalid or disposable email address. Please use a valid email to register.",
"email_verified": false,
"email_provided": "[email protected]"
}
Edit the Build HTML Pass node to customize:
Edit the Send Email with Pass node to modify:
Workflow accepts custom start_date and valid_till from webhook payload. You can also hardcode validity periods in the Generate Pass Details node.
Extend the workflow to capture:
✅ Email verification prevents fake signups
✅ Unique Pass IDs prevent duplication
✅ All data logged in your private Google Sheet
✅ No data stored in n8n (passes through only)
✅ HTTPS webhook for secure data transmission
✅ OAuth2 authentication for Google services
gym fitness trial-pass email-verification qr-code pdf-generation member-onboarding automation verification photo-id
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Generate verified gym trial passes with QR code, email & PDF export |
|---|---|
| Complexity | advanced |
| Nodes | 19 |
| Categories | Document Extraction |
| Author | Jitesh Dugar |
| Published | 12 Nov 2025 |
Use the JSON export at /data/workflows/10768/10768.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Verified Gym Trial Pass with Photo ID Overview Automate gym trial pass generation with email verification, photo ID integration, QR codes, and professional PDF passes. This workflow handles the com...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Document Extraction use case.