Skip to main content

Event QR Code

Create a QR code for a calendar event.

Type Identifier

type: "event"

Fields

FieldTypeRequiredDescription
typestringRequiredMust be "event"
titlestringRequiredEvent title
descriptionstringOptionalEvent description
start_datestringRequiredStart date (YYYY-MM-DD)
start_timestringOptionalStart time (HH:MM)
end_datestringOptionalEnd date (YYYY-MM-DD)
end_timestringOptionalEnd time (HH:MM)
all_daybooleanOptionalWhether it's an all-day event
organizer_namestringOptionalOrganizer name
organizer_websitestringOptionalOrganizer website URL
organizer_phonesarrayOptionalArray of phone numbers
organizer_emailsarrayOptionalArray of email addresses
facilitiesarrayOptionalArray 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"]
}
}'