Jump to Content
Universe Public APIGuidesAPICareersBlogOpen Source
HomeGuidesAPIChangelog
GuidesAPICareersBlogOpen SourceLog InUniverse Public API
Guides
Log In
Getting the QR code for your attendees

The Basics

  • Introduction
  • What is an API?
  • What data is available?
  • Who can use the API?
  • API Options

Creating your Universe App

  • 1. Create your Universe account
  • 2. Create an OAuth application
  • 3. Authorize requests to your app

OAuth

  • Create an OAuth Application
  • Auth Code Grant Flow
  • Client Credentials Flow

GraphQL Code Guide

  • Overview
  • Basic Usage
  • Code Examples
    • Getting a list of your events
    • Getting the orders for a particular event
    • Getting the QR code for your attendees
    • More examples
  • GraphiQL Explorer

Troubleshooting

  • FAQs

Integrations

  • embed2.js

Getting the QR code for your attendees

Suggest Edits

For a particular event:

query {
  event(id: "<event_id>") {
    attendees {
      nodes {
        id,
        firstName,
        lastName,
        email,
        token
        }
      }
    }
  }
}

Updated over 6 years ago