Event QR Code
Create a QR code for a calendar event.
Type Identifier
type: "event"
Fields
| Field | Type | Required | Description |
|---|---|---|---|
type | string | Required | Must be "event" |
title | string | Required | Event title |
description | string | Optional | Event description |
start_date | string | Required | Start date (YYYY-MM-DD) |
start_time | string | Optional | Start time (HH:MM) |
end_date | string | Optional | End date (YYYY-MM-DD) |
end_time | string | Optional | End time (HH:MM) |
all_day | boolean | Optional | Whether it's an all-day event |
organizer_name | string | Optional | Organizer name |
organizer_website | string | Optional | Organizer website URL |
organizer_phones | array | Optional | Array of phone numbers |
organizer_emails | array | Optional | Array of email addresses |
facilities | array | Optional | Array of facility tags |
Use Cases
- Conferences — Share event details with attendees
- Webinars — Quick calendar invite via QR scan
- Meetups — Easy event registration and reminders
- Workshops — Distribute session schedules
Content Schema
{
"type": "event",
"title": "Tech Conference 2026",
"description": "Annual technology conference",
"start_date": "2026-06-15",
"start_time": "09:00",
"end_date": "2026-06-15",
"end_time": "17:00",
"all_day": false,
"organizer_name": "Tech Events Inc",
"organizer_website": "https://techconf.example.com",
"organizer_phones": ["+1234567890"],
"organizer_emails": ["info@techconf.example.com"],
"facilities": ["wifi", "parking", "wheelchair"]
}
Example Request
curl -X POST "https://integration-api.qr-build.com/qr-codes" \
-H "X-API-Key: qrb_live_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Tech Conference",
"type": "event",
"content": {
"type": "event",
"title": "Tech Conference 2026",
"description": "Annual technology conference",
"start_date": "2026-06-15",
"start_time": "09:00",
"end_date": "2026-06-15",
"end_time": "17:00",
"organizer_name": "Tech Events Inc",
"organizer_emails": ["info@techconf.example.com"]
}
}'