Core Features Guide
Explore the main tools for attendee management, photo handling, credential generation, and activity tracking in credential.studio.
Overview
credential.studio provides essential tools to manage event credentials efficiently. You can create custom attendee records, handle photo uploads with editing capabilities, design professional credentials, and track all activities for auditing. These features streamline your workflow from setup to printing.
Attendee Management
Organize attendees with custom fields and real-time updates.
Photo Handling
Upload and edit photos directly in your browser.
Credential Generation
Create print-ready credentials with custom designs.
Activity Tracking
Monitor changes with detailed logs.
Custom Attendee Records and Fields
Build detailed attendee profiles with custom fields like role, VIP status, or dietary needs. Add photos, notes, and metadata to each record.
Create Attendee
Navigate to the Attendees section and click "New Attendee".
Fill in required fields: name, email, and event role.
Add Custom Fields
Select "Add Field" to create custom options such as "Access Level" or "Photo ID".
Use dropdowns, text, or checkboxes for flexibility.
Save and Update
Save the record. Changes sync in real-time across your team.
Use custom fields to tailor records to your event's needs, like backstage access or sponsor notes.
For API integration, create attendees programmatically:
const response = await fetch('https://api.credential.studio/v1/attendees', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' },
body: JSON.stringify({
name: 'John Doe',
email: 'john@example.com',
customFields: { role: 'VIP', access: 'backstage' }
})
});
import requests
response = requests.post(
'https://api.credential.studio/v1/attendees',
headers={'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json'},
json={'name': 'John Doe', 'email': 'john@example.com', 'customFields': {'role': 'VIP', 'access': 'backstage'}}
)
Endpoint to create new attendee records.
Key-value pairs for event-specific data.
Photo Upload and Editing
Handle attendee photos seamlessly. Upload from your device, resize, crop, and optimize directly in the browser—no external tools needed.
Select Photo
Click "Upload Photo" in the attendee profile.
Edit Image
Drag to crop, adjust size to fit credential templates (e.g., 2x2 inches).
const formData = new FormData();
formData.append('photo', photoFile);
formData.append('attendeeId', 'att_12345');
await fetch('https://api.credential.studio/v1/photos', {
method: 'POST',
headers: { 'Authorization': 'Bearer YOUR_API_KEY' },
body: formData
});
Designing and Generating Credentials
Design custom credential templates and generate individual or bulk PDFs. Choose layouts, add barcodes, and preview before printing.
Design Template
Go to Templates and create a new design with your logo, fields, and background.
Assign to Attendees
Link the template to attendee groups or individuals.
Generate and Print
Export as PDF or print directly. Supports high-resolution output.
List of generated credential objects.
Temporary URL for PDF download.
Viewing Activity Logs
Track every action for compliance and troubleshooting. View who made changes, when, and what was modified.
Activity logs retain data for 90 days. Export to CSV for permanent records.
Last updated today
Built with Documentation.AI